@kopexa/icons 10.0.0 → 10.0.2
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-HCZZ7CNF.mjs +30 -0
- package/dist/copy-icon.d.mts +7 -0
- package/dist/copy-icon.d.ts +7 -0
- package/dist/copy-icon.js +53 -0
- package/dist/copy-icon.mjs +7 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +194 -167
- package/dist/index.mjs +11 -7
- package/package.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/copy-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var CopyIcon = ({ 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: "Copy Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export {
|
|
29
|
+
CopyIcon
|
|
30
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
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/copy-icon.tsx
|
|
22
|
+
var copy_icon_exports = {};
|
|
23
|
+
__export(copy_icon_exports, {
|
|
24
|
+
CopyIcon: () => CopyIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(copy_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var CopyIcon = ({ 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: "Copy Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
CopyIcon
|
|
53
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ export { ChevronUpDown } from './chevron-up-down.mjs';
|
|
|
14
14
|
export { CircleIcon } from './circle.mjs';
|
|
15
15
|
export { CloseIcon } from './close.mjs';
|
|
16
16
|
export { ControlsIcon } from './controls.mjs';
|
|
17
|
+
export { CopyIcon } from './copy-icon.mjs';
|
|
17
18
|
export { DataAssetIcon } from './data-asset.mjs';
|
|
18
19
|
export { DocumentsIcon } from './documents.mjs';
|
|
19
20
|
export { DSARIcon } from './dsar.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { ChevronUpDown } from './chevron-up-down.js';
|
|
|
14
14
|
export { CircleIcon } from './circle.js';
|
|
15
15
|
export { CloseIcon } from './close.js';
|
|
16
16
|
export { ControlsIcon } from './controls.js';
|
|
17
|
+
export { CopyIcon } from './copy-icon.js';
|
|
17
18
|
export { DataAssetIcon } from './data-asset.js';
|
|
18
19
|
export { DocumentsIcon } from './documents.js';
|
|
19
20
|
export { DSARIcon } from './dsar.js';
|
package/dist/index.js
CHANGED
|
@@ -37,6 +37,7 @@ __export(index_exports, {
|
|
|
37
37
|
CircleIcon: () => CircleIcon,
|
|
38
38
|
CloseIcon: () => CloseIcon,
|
|
39
39
|
ControlsIcon: () => ControlsIcon,
|
|
40
|
+
CopyIcon: () => CopyIcon,
|
|
40
41
|
DSARIcon: () => DSARIcon,
|
|
41
42
|
DataAssetIcon: () => DataAssetIcon,
|
|
42
43
|
DocumentsIcon: () => DocumentsIcon,
|
|
@@ -477,9 +478,9 @@ var ControlsIcon = ({ size = 24, ...props }) => {
|
|
|
477
478
|
);
|
|
478
479
|
};
|
|
479
480
|
|
|
480
|
-
// src/
|
|
481
|
+
// src/copy-icon.tsx
|
|
481
482
|
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
482
|
-
var
|
|
483
|
+
var CopyIcon = ({ size = 24, ...props }) => {
|
|
483
484
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
484
485
|
"svg",
|
|
485
486
|
{
|
|
@@ -494,18 +495,17 @@ var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
|
494
495
|
strokeLinejoin: "round",
|
|
495
496
|
...props,
|
|
496
497
|
children: [
|
|
497
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "
|
|
498
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("
|
|
499
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "
|
|
500
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
498
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("title", { children: "Copy Icon" }),
|
|
499
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
500
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
501
501
|
]
|
|
502
502
|
}
|
|
503
503
|
);
|
|
504
504
|
};
|
|
505
505
|
|
|
506
|
-
// src/
|
|
506
|
+
// src/data-asset.tsx
|
|
507
507
|
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
508
|
-
var
|
|
508
|
+
var DataAssetIcon = ({ size = 24, ...props }) => {
|
|
509
509
|
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
510
510
|
"svg",
|
|
511
511
|
{
|
|
@@ -520,20 +520,18 @@ var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
|
520
520
|
strokeLinejoin: "round",
|
|
521
521
|
...props,
|
|
522
522
|
children: [
|
|
523
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: "
|
|
524
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("
|
|
525
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "
|
|
526
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "
|
|
527
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M16 13H8" }),
|
|
528
|
-
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M16 17H8" })
|
|
523
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("title", { children: "Plattform Asset icon" }),
|
|
524
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
525
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
526
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
529
527
|
]
|
|
530
528
|
}
|
|
531
529
|
);
|
|
532
530
|
};
|
|
533
531
|
|
|
534
|
-
// src/
|
|
532
|
+
// src/documents.tsx
|
|
535
533
|
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
536
|
-
var
|
|
534
|
+
var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
537
535
|
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
|
|
538
536
|
"svg",
|
|
539
537
|
{
|
|
@@ -548,17 +546,20 @@ var DSARIcon = ({ size = 24, ...props }) => {
|
|
|
548
546
|
strokeLinejoin: "round",
|
|
549
547
|
...props,
|
|
550
548
|
children: [
|
|
551
|
-
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: "
|
|
552
|
-
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("
|
|
553
|
-
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "
|
|
549
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("title", { children: "Documents icon" }),
|
|
550
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
551
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
552
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M10 9H8" }),
|
|
553
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M16 13H8" }),
|
|
554
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M16 17H8" })
|
|
554
555
|
]
|
|
555
556
|
}
|
|
556
557
|
);
|
|
557
558
|
};
|
|
558
559
|
|
|
559
|
-
// src/
|
|
560
|
+
// src/dsar.tsx
|
|
560
561
|
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
561
|
-
var
|
|
562
|
+
var DSARIcon = ({ size = 24, ...props }) => {
|
|
562
563
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
563
564
|
"svg",
|
|
564
565
|
{
|
|
@@ -573,19 +574,44 @@ var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
|
573
574
|
strokeLinejoin: "round",
|
|
574
575
|
...props,
|
|
575
576
|
children: [
|
|
576
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "
|
|
577
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("
|
|
578
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("
|
|
579
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
577
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "DSAR icon" }),
|
|
578
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.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" })
|
|
580
580
|
]
|
|
581
581
|
}
|
|
582
582
|
);
|
|
583
583
|
};
|
|
584
584
|
|
|
585
|
-
// src/
|
|
585
|
+
// src/ellipsis-icon.tsx
|
|
586
586
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
587
|
-
var
|
|
587
|
+
var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
588
588
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
589
|
+
"svg",
|
|
590
|
+
{
|
|
591
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
592
|
+
width: size,
|
|
593
|
+
height: size,
|
|
594
|
+
viewBox: "0 0 24 24",
|
|
595
|
+
fill: "none",
|
|
596
|
+
stroke: "currentColor",
|
|
597
|
+
strokeWidth: "2",
|
|
598
|
+
strokeLinecap: "round",
|
|
599
|
+
strokeLinejoin: "round",
|
|
600
|
+
...props,
|
|
601
|
+
children: [
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Ellipsis Icon" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
606
|
+
]
|
|
607
|
+
}
|
|
608
|
+
);
|
|
609
|
+
};
|
|
610
|
+
|
|
611
|
+
// src/eye.tsx
|
|
612
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
613
|
+
var EyeIcon = (props) => {
|
|
614
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
589
615
|
"svg",
|
|
590
616
|
{
|
|
591
617
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -599,18 +625,18 @@ var EyeIcon = (props) => {
|
|
|
599
625
|
strokeLinejoin: "round",
|
|
600
626
|
...props,
|
|
601
627
|
children: [
|
|
602
|
-
/* @__PURE__ */ (0,
|
|
603
|
-
/* @__PURE__ */ (0,
|
|
604
|
-
/* @__PURE__ */ (0,
|
|
628
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Eye Icon" }),
|
|
629
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.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" }),
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
605
631
|
]
|
|
606
632
|
}
|
|
607
633
|
);
|
|
608
634
|
};
|
|
609
635
|
|
|
610
636
|
// src/eye-off.tsx
|
|
611
|
-
var
|
|
637
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
612
638
|
var EyeOffIcon = (props) => {
|
|
613
|
-
return /* @__PURE__ */ (0,
|
|
639
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
614
640
|
"svg",
|
|
615
641
|
{
|
|
616
642
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -624,20 +650,20 @@ var EyeOffIcon = (props) => {
|
|
|
624
650
|
strokeLinejoin: "round",
|
|
625
651
|
...props,
|
|
626
652
|
children: [
|
|
627
|
-
/* @__PURE__ */ (0,
|
|
628
|
-
/* @__PURE__ */ (0,
|
|
629
|
-
/* @__PURE__ */ (0,
|
|
630
|
-
/* @__PURE__ */ (0,
|
|
631
|
-
/* @__PURE__ */ (0,
|
|
653
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Eye Off Icon" }),
|
|
654
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.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" }),
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.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" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "m2 2 20 20" })
|
|
632
658
|
]
|
|
633
659
|
}
|
|
634
660
|
);
|
|
635
661
|
};
|
|
636
662
|
|
|
637
663
|
// src/grip-vertical.tsx
|
|
638
|
-
var
|
|
664
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
639
665
|
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
640
|
-
return /* @__PURE__ */ (0,
|
|
666
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
641
667
|
"svg",
|
|
642
668
|
{
|
|
643
669
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -652,22 +678,22 @@ var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
652
678
|
"aria-hidden": "true",
|
|
653
679
|
...props,
|
|
654
680
|
children: [
|
|
655
|
-
/* @__PURE__ */ (0,
|
|
656
|
-
/* @__PURE__ */ (0,
|
|
657
|
-
/* @__PURE__ */ (0,
|
|
658
|
-
/* @__PURE__ */ (0,
|
|
659
|
-
/* @__PURE__ */ (0,
|
|
660
|
-
/* @__PURE__ */ (0,
|
|
661
|
-
/* @__PURE__ */ (0,
|
|
681
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
682
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
683
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
685
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
686
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
687
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
662
688
|
]
|
|
663
689
|
}
|
|
664
690
|
);
|
|
665
691
|
};
|
|
666
692
|
|
|
667
693
|
// src/incident.tsx
|
|
668
|
-
var
|
|
694
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
669
695
|
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
670
|
-
return /* @__PURE__ */ (0,
|
|
696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
671
697
|
"svg",
|
|
672
698
|
{
|
|
673
699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -681,19 +707,19 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
681
707
|
strokeLinejoin: "round",
|
|
682
708
|
...props,
|
|
683
709
|
children: [
|
|
684
|
-
/* @__PURE__ */ (0,
|
|
685
|
-
/* @__PURE__ */ (0,
|
|
686
|
-
/* @__PURE__ */ (0,
|
|
687
|
-
/* @__PURE__ */ (0,
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Incident icon" }),
|
|
711
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M12 16h.01" }),
|
|
712
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M12 8v4" }),
|
|
713
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.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" })
|
|
688
714
|
]
|
|
689
715
|
}
|
|
690
716
|
);
|
|
691
717
|
};
|
|
692
718
|
|
|
693
719
|
// src/info.tsx
|
|
694
|
-
var
|
|
720
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
695
721
|
var InfoIcon = ({ size = 24, ...props }) => {
|
|
696
|
-
return /* @__PURE__ */ (0,
|
|
722
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
697
723
|
"svg",
|
|
698
724
|
{
|
|
699
725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -708,19 +734,19 @@ var InfoIcon = ({ size = 24, ...props }) => {
|
|
|
708
734
|
"aria-hidden": "true",
|
|
709
735
|
...props,
|
|
710
736
|
children: [
|
|
711
|
-
/* @__PURE__ */ (0,
|
|
712
|
-
/* @__PURE__ */ (0,
|
|
713
|
-
/* @__PURE__ */ (0,
|
|
714
|
-
/* @__PURE__ */ (0,
|
|
737
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Info Icon" }),
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M12 16v-4" }),
|
|
740
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M12 8h.01" })
|
|
715
741
|
]
|
|
716
742
|
}
|
|
717
743
|
);
|
|
718
744
|
};
|
|
719
745
|
|
|
720
746
|
// src/issues.tsx
|
|
721
|
-
var
|
|
747
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
722
748
|
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
723
|
-
return /* @__PURE__ */ (0,
|
|
749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
724
750
|
"svg",
|
|
725
751
|
{
|
|
726
752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -734,21 +760,21 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
734
760
|
strokeLinejoin: "round",
|
|
735
761
|
...props,
|
|
736
762
|
children: [
|
|
737
|
-
/* @__PURE__ */ (0,
|
|
738
|
-
/* @__PURE__ */ (0,
|
|
739
|
-
/* @__PURE__ */ (0,
|
|
740
|
-
/* @__PURE__ */ (0,
|
|
741
|
-
/* @__PURE__ */ (0,
|
|
742
|
-
/* @__PURE__ */ (0,
|
|
763
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "Issues icon" }),
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.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" }),
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 11h4" }),
|
|
766
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 16h4" }),
|
|
767
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M8 11h.01" }),
|
|
768
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M8 16h.01" })
|
|
743
769
|
]
|
|
744
770
|
}
|
|
745
771
|
);
|
|
746
772
|
};
|
|
747
773
|
|
|
748
774
|
// src/linkedin.tsx
|
|
749
|
-
var
|
|
775
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
750
776
|
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
751
|
-
return /* @__PURE__ */ (0,
|
|
777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
752
778
|
"svg",
|
|
753
779
|
{
|
|
754
780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -764,19 +790,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
764
790
|
focusable: "false",
|
|
765
791
|
...props,
|
|
766
792
|
children: [
|
|
767
|
-
/* @__PURE__ */ (0,
|
|
768
|
-
/* @__PURE__ */ (0,
|
|
769
|
-
/* @__PURE__ */ (0,
|
|
770
|
-
/* @__PURE__ */ (0,
|
|
793
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "LinkedIn Icon" }),
|
|
794
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.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" }),
|
|
795
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
796
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
771
797
|
]
|
|
772
798
|
}
|
|
773
799
|
);
|
|
774
800
|
};
|
|
775
801
|
|
|
776
802
|
// src/minus.tsx
|
|
777
|
-
var
|
|
803
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
778
804
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
779
|
-
return /* @__PURE__ */ (0,
|
|
805
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
780
806
|
"svg",
|
|
781
807
|
{
|
|
782
808
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -790,17 +816,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
790
816
|
strokeLinejoin: "round",
|
|
791
817
|
...props,
|
|
792
818
|
children: [
|
|
793
|
-
/* @__PURE__ */ (0,
|
|
794
|
-
/* @__PURE__ */ (0,
|
|
819
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "Minus Icon" }),
|
|
820
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M5 12h14" })
|
|
795
821
|
]
|
|
796
822
|
}
|
|
797
823
|
);
|
|
798
824
|
};
|
|
799
825
|
|
|
800
826
|
// src/notification-icon.tsx
|
|
801
|
-
var
|
|
827
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
802
828
|
var NotificationIcon = (props) => {
|
|
803
|
-
return /* @__PURE__ */ (0,
|
|
829
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
804
830
|
"svg",
|
|
805
831
|
{
|
|
806
832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -814,18 +840,18 @@ var NotificationIcon = (props) => {
|
|
|
814
840
|
strokeLinejoin: "round",
|
|
815
841
|
...props,
|
|
816
842
|
children: [
|
|
817
|
-
/* @__PURE__ */ (0,
|
|
818
|
-
/* @__PURE__ */ (0,
|
|
819
|
-
/* @__PURE__ */ (0,
|
|
843
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Notification Icon" }),
|
|
844
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
845
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.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" })
|
|
820
846
|
]
|
|
821
847
|
}
|
|
822
848
|
);
|
|
823
849
|
};
|
|
824
850
|
|
|
825
851
|
// src/panel-left-icon.tsx
|
|
826
|
-
var
|
|
852
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
827
853
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
828
|
-
return /* @__PURE__ */ (0,
|
|
854
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
829
855
|
"svg",
|
|
830
856
|
{
|
|
831
857
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -839,18 +865,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
839
865
|
strokeLinejoin: "round",
|
|
840
866
|
...props,
|
|
841
867
|
children: [
|
|
842
|
-
/* @__PURE__ */ (0,
|
|
843
|
-
/* @__PURE__ */ (0,
|
|
844
|
-
/* @__PURE__ */ (0,
|
|
868
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Panel Left icon" }),
|
|
869
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
870
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M9 3v18" })
|
|
845
871
|
]
|
|
846
872
|
}
|
|
847
873
|
);
|
|
848
874
|
};
|
|
849
875
|
|
|
850
876
|
// src/people.tsx
|
|
851
|
-
var
|
|
877
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
852
878
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
853
|
-
return /* @__PURE__ */ (0,
|
|
879
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
854
880
|
"svg",
|
|
855
881
|
{
|
|
856
882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -864,20 +890,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
864
890
|
strokeLinejoin: "round",
|
|
865
891
|
...props,
|
|
866
892
|
children: [
|
|
867
|
-
/* @__PURE__ */ (0,
|
|
868
|
-
/* @__PURE__ */ (0,
|
|
869
|
-
/* @__PURE__ */ (0,
|
|
870
|
-
/* @__PURE__ */ (0,
|
|
871
|
-
/* @__PURE__ */ (0,
|
|
893
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "People icon" }),
|
|
894
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
895
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
896
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
897
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
872
898
|
]
|
|
873
899
|
}
|
|
874
900
|
);
|
|
875
901
|
};
|
|
876
902
|
|
|
877
903
|
// src/physical-asset.tsx
|
|
878
|
-
var
|
|
904
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
879
905
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
880
|
-
return /* @__PURE__ */ (0,
|
|
906
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
881
907
|
"svg",
|
|
882
908
|
{
|
|
883
909
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -891,20 +917,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
891
917
|
strokeLinejoin: "round",
|
|
892
918
|
...props,
|
|
893
919
|
children: [
|
|
894
|
-
/* @__PURE__ */ (0,
|
|
895
|
-
/* @__PURE__ */ (0,
|
|
896
|
-
/* @__PURE__ */ (0,
|
|
897
|
-
/* @__PURE__ */ (0,
|
|
898
|
-
/* @__PURE__ */ (0,
|
|
920
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Physical Asset icon" }),
|
|
921
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
923
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M7 19h5" }),
|
|
924
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
899
925
|
]
|
|
900
926
|
}
|
|
901
927
|
);
|
|
902
928
|
};
|
|
903
929
|
|
|
904
930
|
// src/plattform-asset.tsx
|
|
905
|
-
var
|
|
931
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
906
932
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
907
|
-
return /* @__PURE__ */ (0,
|
|
933
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
908
934
|
"svg",
|
|
909
935
|
{
|
|
910
936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -918,20 +944,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
918
944
|
strokeLinejoin: "round",
|
|
919
945
|
...props,
|
|
920
946
|
children: [
|
|
921
|
-
/* @__PURE__ */ (0,
|
|
922
|
-
/* @__PURE__ */ (0,
|
|
923
|
-
/* @__PURE__ */ (0,
|
|
924
|
-
/* @__PURE__ */ (0,
|
|
925
|
-
/* @__PURE__ */ (0,
|
|
947
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Plattform Asset icon" }),
|
|
948
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
949
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
950
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
951
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
926
952
|
]
|
|
927
953
|
}
|
|
928
954
|
);
|
|
929
955
|
};
|
|
930
956
|
|
|
931
957
|
// src/plus.tsx
|
|
932
|
-
var
|
|
958
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
933
959
|
var PlusIcon = (props) => {
|
|
934
|
-
return /* @__PURE__ */ (0,
|
|
960
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
935
961
|
"svg",
|
|
936
962
|
{
|
|
937
963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -945,21 +971,21 @@ var PlusIcon = (props) => {
|
|
|
945
971
|
strokeLinejoin: "round",
|
|
946
972
|
...props,
|
|
947
973
|
children: [
|
|
948
|
-
/* @__PURE__ */ (0,
|
|
949
|
-
/* @__PURE__ */ (0,
|
|
950
|
-
/* @__PURE__ */ (0,
|
|
974
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Plus Icon" }),
|
|
975
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M5 12h14" }),
|
|
976
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M12 5v14" })
|
|
951
977
|
]
|
|
952
978
|
}
|
|
953
979
|
);
|
|
954
980
|
};
|
|
955
981
|
|
|
956
982
|
// src/processing-activity.tsx
|
|
957
|
-
var
|
|
983
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
958
984
|
var ProcessingActivityIcon = ({
|
|
959
985
|
size = 24,
|
|
960
986
|
...props
|
|
961
987
|
}) => {
|
|
962
|
-
return /* @__PURE__ */ (0,
|
|
988
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
963
989
|
"svg",
|
|
964
990
|
{
|
|
965
991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -973,19 +999,19 @@ var ProcessingActivityIcon = ({
|
|
|
973
999
|
strokeLinejoin: "round",
|
|
974
1000
|
...props,
|
|
975
1001
|
children: [
|
|
976
|
-
/* @__PURE__ */ (0,
|
|
977
|
-
/* @__PURE__ */ (0,
|
|
978
|
-
/* @__PURE__ */ (0,
|
|
979
|
-
/* @__PURE__ */ (0,
|
|
1002
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Processing Activity icon" }),
|
|
1003
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
1004
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
1005
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
980
1006
|
]
|
|
981
1007
|
}
|
|
982
1008
|
);
|
|
983
1009
|
};
|
|
984
1010
|
|
|
985
1011
|
// src/program-icon.tsx
|
|
986
|
-
var
|
|
1012
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
987
1013
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
988
|
-
return /* @__PURE__ */ (0,
|
|
1014
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
989
1015
|
"svg",
|
|
990
1016
|
{
|
|
991
1017
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -999,20 +1025,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
999
1025
|
strokeLinejoin: "round",
|
|
1000
1026
|
...props,
|
|
1001
1027
|
children: [
|
|
1002
|
-
/* @__PURE__ */ (0,
|
|
1003
|
-
/* @__PURE__ */ (0,
|
|
1004
|
-
/* @__PURE__ */ (0,
|
|
1005
|
-
/* @__PURE__ */ (0,
|
|
1006
|
-
/* @__PURE__ */ (0,
|
|
1028
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Program icon" }),
|
|
1029
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.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" }),
|
|
1030
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M8 10v4" }),
|
|
1031
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M12 10v2" }),
|
|
1032
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M16 10v6" })
|
|
1007
1033
|
]
|
|
1008
1034
|
}
|
|
1009
1035
|
);
|
|
1010
1036
|
};
|
|
1011
1037
|
|
|
1012
1038
|
// src/risk.tsx
|
|
1013
|
-
var
|
|
1039
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
1014
1040
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
1015
|
-
return /* @__PURE__ */ (0,
|
|
1041
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
1016
1042
|
"svg",
|
|
1017
1043
|
{
|
|
1018
1044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1026,19 +1052,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
1026
1052
|
strokeLinejoin: "round",
|
|
1027
1053
|
...props,
|
|
1028
1054
|
children: [
|
|
1029
|
-
/* @__PURE__ */ (0,
|
|
1030
|
-
/* @__PURE__ */ (0,
|
|
1031
|
-
/* @__PURE__ */ (0,
|
|
1032
|
-
/* @__PURE__ */ (0,
|
|
1055
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Risk icon" }),
|
|
1056
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.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" }),
|
|
1057
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 8v4" }),
|
|
1058
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 16h.01" })
|
|
1033
1059
|
]
|
|
1034
1060
|
}
|
|
1035
1061
|
);
|
|
1036
1062
|
};
|
|
1037
1063
|
|
|
1038
1064
|
// src/save.tsx
|
|
1039
|
-
var
|
|
1065
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1040
1066
|
var SaveIcon = (props) => {
|
|
1041
|
-
return /* @__PURE__ */ (0,
|
|
1067
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1042
1068
|
"svg",
|
|
1043
1069
|
{
|
|
1044
1070
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1052,19 +1078,19 @@ var SaveIcon = (props) => {
|
|
|
1052
1078
|
strokeLinejoin: "round",
|
|
1053
1079
|
...props,
|
|
1054
1080
|
children: [
|
|
1055
|
-
/* @__PURE__ */ (0,
|
|
1056
|
-
/* @__PURE__ */ (0,
|
|
1057
|
-
/* @__PURE__ */ (0,
|
|
1058
|
-
/* @__PURE__ */ (0,
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "Save Icon" }),
|
|
1082
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.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" }),
|
|
1083
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
1084
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
1059
1085
|
]
|
|
1060
1086
|
}
|
|
1061
1087
|
);
|
|
1062
1088
|
};
|
|
1063
1089
|
|
|
1064
1090
|
// src/search.tsx
|
|
1065
|
-
var
|
|
1091
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1066
1092
|
var SearchIcon = (props) => {
|
|
1067
|
-
return /* @__PURE__ */ (0,
|
|
1093
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
1068
1094
|
"svg",
|
|
1069
1095
|
{
|
|
1070
1096
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1078,18 +1104,18 @@ var SearchIcon = (props) => {
|
|
|
1078
1104
|
strokeLinejoin: "round",
|
|
1079
1105
|
...props,
|
|
1080
1106
|
children: [
|
|
1081
|
-
/* @__PURE__ */ (0,
|
|
1082
|
-
/* @__PURE__ */ (0,
|
|
1083
|
-
/* @__PURE__ */ (0,
|
|
1107
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: "Search Icon" }),
|
|
1108
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1109
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
1084
1110
|
]
|
|
1085
1111
|
}
|
|
1086
1112
|
);
|
|
1087
1113
|
};
|
|
1088
1114
|
|
|
1089
1115
|
// src/settings.tsx
|
|
1090
|
-
var
|
|
1116
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1091
1117
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
1092
|
-
return /* @__PURE__ */ (0,
|
|
1118
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
1093
1119
|
"svg",
|
|
1094
1120
|
{
|
|
1095
1121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1103,20 +1129,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
1103
1129
|
strokeLinejoin: "round",
|
|
1104
1130
|
...props,
|
|
1105
1131
|
children: [
|
|
1106
|
-
/* @__PURE__ */ (0,
|
|
1107
|
-
/* @__PURE__ */ (0,
|
|
1108
|
-
/* @__PURE__ */ (0,
|
|
1109
|
-
/* @__PURE__ */ (0,
|
|
1110
|
-
/* @__PURE__ */ (0,
|
|
1132
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: "Settings" }),
|
|
1133
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M14 17H5" }),
|
|
1134
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "M19 7h-9" }),
|
|
1135
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1136
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
1111
1137
|
]
|
|
1112
1138
|
}
|
|
1113
1139
|
);
|
|
1114
1140
|
};
|
|
1115
1141
|
|
|
1116
1142
|
// src/shell.tsx
|
|
1117
|
-
var
|
|
1143
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
1118
1144
|
var ShellIcon = ({ size = 24, ...props }) => {
|
|
1119
|
-
return /* @__PURE__ */ (0,
|
|
1145
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
1120
1146
|
"svg",
|
|
1121
1147
|
{
|
|
1122
1148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1130,17 +1156,17 @@ var ShellIcon = ({ size = 24, ...props }) => {
|
|
|
1130
1156
|
strokeLinejoin: "round",
|
|
1131
1157
|
...props,
|
|
1132
1158
|
children: [
|
|
1133
|
-
/* @__PURE__ */ (0,
|
|
1134
|
-
/* @__PURE__ */ (0,
|
|
1159
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: "Shell Icon" }),
|
|
1160
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.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" })
|
|
1135
1161
|
]
|
|
1136
1162
|
}
|
|
1137
1163
|
);
|
|
1138
1164
|
};
|
|
1139
1165
|
|
|
1140
1166
|
// src/upload.tsx
|
|
1141
|
-
var
|
|
1167
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
1142
1168
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1143
|
-
return /* @__PURE__ */ (0,
|
|
1169
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
1144
1170
|
"svg",
|
|
1145
1171
|
{
|
|
1146
1172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1154,19 +1180,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1154
1180
|
strokeLinejoin: "round",
|
|
1155
1181
|
...props,
|
|
1156
1182
|
children: [
|
|
1157
|
-
/* @__PURE__ */ (0,
|
|
1158
|
-
/* @__PURE__ */ (0,
|
|
1159
|
-
/* @__PURE__ */ (0,
|
|
1160
|
-
/* @__PURE__ */ (0,
|
|
1183
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: "Upload icon" }),
|
|
1184
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M12 13v8" }),
|
|
1185
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1186
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1161
1187
|
]
|
|
1162
1188
|
}
|
|
1163
1189
|
);
|
|
1164
1190
|
};
|
|
1165
1191
|
|
|
1166
1192
|
// src/vendor.tsx
|
|
1167
|
-
var
|
|
1193
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
1168
1194
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1169
|
-
return /* @__PURE__ */ (0,
|
|
1195
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
1170
1196
|
"svg",
|
|
1171
1197
|
{
|
|
1172
1198
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1180,12 +1206,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1180
1206
|
strokeLinejoin: "round",
|
|
1181
1207
|
...props,
|
|
1182
1208
|
children: [
|
|
1183
|
-
/* @__PURE__ */ (0,
|
|
1184
|
-
/* @__PURE__ */ (0,
|
|
1185
|
-
/* @__PURE__ */ (0,
|
|
1186
|
-
/* @__PURE__ */ (0,
|
|
1187
|
-
/* @__PURE__ */ (0,
|
|
1188
|
-
/* @__PURE__ */ (0,
|
|
1209
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: "Vendor icon" }),
|
|
1210
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.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" }),
|
|
1211
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1212
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1213
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M2 7h20" }),
|
|
1214
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.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" })
|
|
1189
1215
|
]
|
|
1190
1216
|
}
|
|
1191
1217
|
);
|
|
@@ -1208,6 +1234,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1208
1234
|
CircleIcon,
|
|
1209
1235
|
CloseIcon,
|
|
1210
1236
|
ControlsIcon,
|
|
1237
|
+
CopyIcon,
|
|
1211
1238
|
DSARIcon,
|
|
1212
1239
|
DataAssetIcon,
|
|
1213
1240
|
DocumentsIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
SearchIcon
|
|
4
|
+
} from "./chunk-3BJDY4K2.mjs";
|
|
2
5
|
import {
|
|
3
6
|
SettingsIcon
|
|
4
7
|
} from "./chunk-5VB6VXKQ.mjs";
|
|
@@ -11,6 +14,9 @@ import {
|
|
|
11
14
|
import {
|
|
12
15
|
VendorIcon
|
|
13
16
|
} from "./chunk-5AMD4S26.mjs";
|
|
17
|
+
import {
|
|
18
|
+
PeopleIcon
|
|
19
|
+
} from "./chunk-XOYRXKQA.mjs";
|
|
14
20
|
import {
|
|
15
21
|
PhysicalAssetIcon
|
|
16
22
|
} from "./chunk-V6QXOK5V.mjs";
|
|
@@ -33,8 +39,8 @@ import {
|
|
|
33
39
|
SaveIcon
|
|
34
40
|
} from "./chunk-KE6JB3MS.mjs";
|
|
35
41
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
42
|
+
IncidentIcon
|
|
43
|
+
} from "./chunk-EIACNJBZ.mjs";
|
|
38
44
|
import {
|
|
39
45
|
InfoIcon
|
|
40
46
|
} from "./chunk-WGGLF2T2.mjs";
|
|
@@ -54,8 +60,8 @@ import {
|
|
|
54
60
|
PanelLeftIcon
|
|
55
61
|
} from "./chunk-2O26UG4T.mjs";
|
|
56
62
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
63
|
+
CopyIcon
|
|
64
|
+
} from "./chunk-HCZZ7CNF.mjs";
|
|
59
65
|
import {
|
|
60
66
|
DataAssetIcon
|
|
61
67
|
} from "./chunk-36PEVCQL.mjs";
|
|
@@ -77,9 +83,6 @@ import {
|
|
|
77
83
|
import {
|
|
78
84
|
GripVerticalIcon
|
|
79
85
|
} from "./chunk-GPAMXO65.mjs";
|
|
80
|
-
import {
|
|
81
|
-
IncidentIcon
|
|
82
|
-
} from "./chunk-EIACNJBZ.mjs";
|
|
83
86
|
import {
|
|
84
87
|
CheckIcon
|
|
85
88
|
} from "./chunk-P4SLDC2H.mjs";
|
|
@@ -145,6 +148,7 @@ export {
|
|
|
145
148
|
CircleIcon,
|
|
146
149
|
CloseIcon,
|
|
147
150
|
ControlsIcon,
|
|
151
|
+
CopyIcon,
|
|
148
152
|
DSARIcon,
|
|
149
153
|
DataAssetIcon,
|
|
150
154
|
DocumentsIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
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.7.
|
|
30
|
+
"@kopexa/theme": "1.7.2"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.5",
|