@kopexa/icons 9.0.1 → 9.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-GPAMXO65.mjs +35 -0
- package/dist/grip-vertical.d.mts +7 -0
- package/dist/grip-vertical.d.ts +7 -0
- package/dist/grip-vertical.js +58 -0
- package/dist/grip-vertical.mjs +7 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +143 -111
- package/dist/index.mjs +12 -8
- package/package.json +2 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/grip-vertical.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var GripVerticalIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
19
|
+
...props,
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ jsx("title", { children: "Grip Vertical Icon" }),
|
|
22
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1" }),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "5", r: "1" }),
|
|
24
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "19", r: "1" }),
|
|
25
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1" }),
|
|
26
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "5", r: "1" }),
|
|
27
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "19", r: "1" })
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export {
|
|
34
|
+
GripVerticalIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
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/grip-vertical.tsx
|
|
22
|
+
var grip_vertical_exports = {};
|
|
23
|
+
__export(grip_vertical_exports, {
|
|
24
|
+
GripVerticalIcon: () => GripVerticalIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(grip_vertical_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var GripVerticalIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
42
|
+
...props,
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
56
|
+
0 && (module.exports = {
|
|
57
|
+
GripVerticalIcon
|
|
58
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -18,6 +18,7 @@ export { DSARIcon } from './dsar.mjs';
|
|
|
18
18
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
19
19
|
export { EyeIcon } from './eye.mjs';
|
|
20
20
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.mjs';
|
|
21
22
|
export { IncidentIcon } from './incident.mjs';
|
|
22
23
|
export { IssuesIcon } from './issues.mjs';
|
|
23
24
|
export { LinkedInIcon } from './linkedin.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export { DSARIcon } from './dsar.js';
|
|
|
18
18
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
19
19
|
export { EyeIcon } from './eye.js';
|
|
20
20
|
export { EyeOffIcon } from './eye-off.js';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.js';
|
|
21
22
|
export { IncidentIcon } from './incident.js';
|
|
22
23
|
export { IssuesIcon } from './issues.js';
|
|
23
24
|
export { LinkedInIcon } from './linkedin.js';
|
package/dist/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __export(index_exports, {
|
|
|
41
41
|
EllipsisIcon: () => EllipsisIcon,
|
|
42
42
|
EyeIcon: () => EyeIcon,
|
|
43
43
|
EyeOffIcon: () => EyeOffIcon,
|
|
44
|
+
GripVerticalIcon: () => GripVerticalIcon,
|
|
44
45
|
IncidentIcon: () => IncidentIcon,
|
|
45
46
|
IssuesIcon: () => IssuesIcon,
|
|
46
47
|
LinkedInIcon: () => LinkedInIcon,
|
|
@@ -577,9 +578,9 @@ var EyeOffIcon = (props) => {
|
|
|
577
578
|
);
|
|
578
579
|
};
|
|
579
580
|
|
|
580
|
-
// src/
|
|
581
|
+
// src/grip-vertical.tsx
|
|
581
582
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
582
|
-
var
|
|
583
|
+
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
583
584
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
584
585
|
"svg",
|
|
585
586
|
{
|
|
@@ -592,20 +593,24 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
592
593
|
strokeWidth: "2",
|
|
593
594
|
strokeLinecap: "round",
|
|
594
595
|
strokeLinejoin: "round",
|
|
596
|
+
"aria-hidden": "true",
|
|
595
597
|
...props,
|
|
596
598
|
children: [
|
|
597
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "
|
|
598
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
599
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
600
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
599
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
600
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
601
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
601
606
|
]
|
|
602
607
|
}
|
|
603
608
|
);
|
|
604
609
|
};
|
|
605
610
|
|
|
606
|
-
// src/
|
|
611
|
+
// src/incident.tsx
|
|
607
612
|
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
608
|
-
var
|
|
613
|
+
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
609
614
|
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
610
615
|
"svg",
|
|
611
616
|
{
|
|
@@ -620,21 +625,47 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
620
625
|
strokeLinejoin: "round",
|
|
621
626
|
...props,
|
|
622
627
|
children: [
|
|
623
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "
|
|
624
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "
|
|
625
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12
|
|
626
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "
|
|
627
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 11h.01" }),
|
|
628
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 16h.01" })
|
|
628
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Incident icon" }),
|
|
629
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 16h.01" }),
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 8v4" }),
|
|
631
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.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" })
|
|
629
632
|
]
|
|
630
633
|
}
|
|
631
634
|
);
|
|
632
635
|
};
|
|
633
636
|
|
|
634
|
-
// src/
|
|
637
|
+
// src/issues.tsx
|
|
635
638
|
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
636
|
-
var
|
|
639
|
+
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
637
640
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
641
|
+
"svg",
|
|
642
|
+
{
|
|
643
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
644
|
+
width: size,
|
|
645
|
+
height: size,
|
|
646
|
+
viewBox: "0 0 24 24",
|
|
647
|
+
fill: "none",
|
|
648
|
+
stroke: "currentColor",
|
|
649
|
+
strokeWidth: "2",
|
|
650
|
+
strokeLinecap: "round",
|
|
651
|
+
strokeLinejoin: "round",
|
|
652
|
+
...props,
|
|
653
|
+
children: [
|
|
654
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Issues icon" }),
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.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" }),
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 11h4" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 16h4" }),
|
|
658
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M8 11h.01" }),
|
|
659
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M8 16h.01" })
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
);
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
// src/linkedin.tsx
|
|
666
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
667
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
668
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
638
669
|
"svg",
|
|
639
670
|
{
|
|
640
671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -650,19 +681,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
650
681
|
focusable: "false",
|
|
651
682
|
...props,
|
|
652
683
|
children: [
|
|
653
|
-
/* @__PURE__ */ (0,
|
|
654
|
-
/* @__PURE__ */ (0,
|
|
655
|
-
/* @__PURE__ */ (0,
|
|
656
|
-
/* @__PURE__ */ (0,
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "LinkedIn Icon" }),
|
|
685
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.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" }),
|
|
686
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
687
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
657
688
|
]
|
|
658
689
|
}
|
|
659
690
|
);
|
|
660
691
|
};
|
|
661
692
|
|
|
662
693
|
// src/minus.tsx
|
|
663
|
-
var
|
|
694
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
664
695
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
665
|
-
return /* @__PURE__ */ (0,
|
|
696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
666
697
|
"svg",
|
|
667
698
|
{
|
|
668
699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -676,17 +707,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
676
707
|
strokeLinejoin: "round",
|
|
677
708
|
...props,
|
|
678
709
|
children: [
|
|
679
|
-
/* @__PURE__ */ (0,
|
|
680
|
-
/* @__PURE__ */ (0,
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Minus Icon" }),
|
|
711
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M5 12h14" })
|
|
681
712
|
]
|
|
682
713
|
}
|
|
683
714
|
);
|
|
684
715
|
};
|
|
685
716
|
|
|
686
717
|
// src/notification-icon.tsx
|
|
687
|
-
var
|
|
718
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
688
719
|
var NotificationIcon = (props) => {
|
|
689
|
-
return /* @__PURE__ */ (0,
|
|
720
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
690
721
|
"svg",
|
|
691
722
|
{
|
|
692
723
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -700,18 +731,18 @@ var NotificationIcon = (props) => {
|
|
|
700
731
|
strokeLinejoin: "round",
|
|
701
732
|
...props,
|
|
702
733
|
children: [
|
|
703
|
-
/* @__PURE__ */ (0,
|
|
704
|
-
/* @__PURE__ */ (0,
|
|
705
|
-
/* @__PURE__ */ (0,
|
|
734
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Notification Icon" }),
|
|
735
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
736
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.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" })
|
|
706
737
|
]
|
|
707
738
|
}
|
|
708
739
|
);
|
|
709
740
|
};
|
|
710
741
|
|
|
711
742
|
// src/panel-left-icon.tsx
|
|
712
|
-
var
|
|
743
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
713
744
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
714
|
-
return /* @__PURE__ */ (0,
|
|
745
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
715
746
|
"svg",
|
|
716
747
|
{
|
|
717
748
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -725,18 +756,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
725
756
|
strokeLinejoin: "round",
|
|
726
757
|
...props,
|
|
727
758
|
children: [
|
|
728
|
-
/* @__PURE__ */ (0,
|
|
729
|
-
/* @__PURE__ */ (0,
|
|
730
|
-
/* @__PURE__ */ (0,
|
|
759
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "Panel Left icon" }),
|
|
760
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
761
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M9 3v18" })
|
|
731
762
|
]
|
|
732
763
|
}
|
|
733
764
|
);
|
|
734
765
|
};
|
|
735
766
|
|
|
736
767
|
// src/people.tsx
|
|
737
|
-
var
|
|
768
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
738
769
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
739
|
-
return /* @__PURE__ */ (0,
|
|
770
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
740
771
|
"svg",
|
|
741
772
|
{
|
|
742
773
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -750,20 +781,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
750
781
|
strokeLinejoin: "round",
|
|
751
782
|
...props,
|
|
752
783
|
children: [
|
|
753
|
-
/* @__PURE__ */ (0,
|
|
754
|
-
/* @__PURE__ */ (0,
|
|
755
|
-
/* @__PURE__ */ (0,
|
|
756
|
-
/* @__PURE__ */ (0,
|
|
757
|
-
/* @__PURE__ */ (0,
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "People icon" }),
|
|
785
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
786
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
787
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
788
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
758
789
|
]
|
|
759
790
|
}
|
|
760
791
|
);
|
|
761
792
|
};
|
|
762
793
|
|
|
763
794
|
// src/physical-asset.tsx
|
|
764
|
-
var
|
|
795
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
765
796
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
766
|
-
return /* @__PURE__ */ (0,
|
|
797
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
767
798
|
"svg",
|
|
768
799
|
{
|
|
769
800
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -777,20 +808,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
777
808
|
strokeLinejoin: "round",
|
|
778
809
|
...props,
|
|
779
810
|
children: [
|
|
780
|
-
/* @__PURE__ */ (0,
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
/* @__PURE__ */ (0,
|
|
783
|
-
/* @__PURE__ */ (0,
|
|
784
|
-
/* @__PURE__ */ (0,
|
|
811
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "Physical Asset icon" }),
|
|
812
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
813
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
814
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M7 19h5" }),
|
|
815
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
785
816
|
]
|
|
786
817
|
}
|
|
787
818
|
);
|
|
788
819
|
};
|
|
789
820
|
|
|
790
821
|
// src/plattform-asset.tsx
|
|
791
|
-
var
|
|
822
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
792
823
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
793
|
-
return /* @__PURE__ */ (0,
|
|
824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
794
825
|
"svg",
|
|
795
826
|
{
|
|
796
827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -804,20 +835,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
804
835
|
strokeLinejoin: "round",
|
|
805
836
|
...props,
|
|
806
837
|
children: [
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
810
|
-
/* @__PURE__ */ (0,
|
|
811
|
-
/* @__PURE__ */ (0,
|
|
838
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Plattform Asset icon" }),
|
|
839
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
840
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
841
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
842
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
812
843
|
]
|
|
813
844
|
}
|
|
814
845
|
);
|
|
815
846
|
};
|
|
816
847
|
|
|
817
848
|
// src/plus.tsx
|
|
818
|
-
var
|
|
849
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
819
850
|
var PlusIcon = (props) => {
|
|
820
|
-
return /* @__PURE__ */ (0,
|
|
851
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
821
852
|
"svg",
|
|
822
853
|
{
|
|
823
854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -831,21 +862,21 @@ var PlusIcon = (props) => {
|
|
|
831
862
|
strokeLinejoin: "round",
|
|
832
863
|
...props,
|
|
833
864
|
children: [
|
|
834
|
-
/* @__PURE__ */ (0,
|
|
835
|
-
/* @__PURE__ */ (0,
|
|
836
|
-
/* @__PURE__ */ (0,
|
|
865
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Plus Icon" }),
|
|
866
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M5 12h14" }),
|
|
867
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M12 5v14" })
|
|
837
868
|
]
|
|
838
869
|
}
|
|
839
870
|
);
|
|
840
871
|
};
|
|
841
872
|
|
|
842
873
|
// src/processing-activity.tsx
|
|
843
|
-
var
|
|
874
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
844
875
|
var ProcessingActivityIcon = ({
|
|
845
876
|
size = 24,
|
|
846
877
|
...props
|
|
847
878
|
}) => {
|
|
848
|
-
return /* @__PURE__ */ (0,
|
|
879
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
849
880
|
"svg",
|
|
850
881
|
{
|
|
851
882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -859,19 +890,19 @@ var ProcessingActivityIcon = ({
|
|
|
859
890
|
strokeLinejoin: "round",
|
|
860
891
|
...props,
|
|
861
892
|
children: [
|
|
862
|
-
/* @__PURE__ */ (0,
|
|
863
|
-
/* @__PURE__ */ (0,
|
|
864
|
-
/* @__PURE__ */ (0,
|
|
865
|
-
/* @__PURE__ */ (0,
|
|
893
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Processing Activity icon" }),
|
|
894
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
895
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
896
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
866
897
|
]
|
|
867
898
|
}
|
|
868
899
|
);
|
|
869
900
|
};
|
|
870
901
|
|
|
871
902
|
// src/program-icon.tsx
|
|
872
|
-
var
|
|
903
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
873
904
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
874
|
-
return /* @__PURE__ */ (0,
|
|
905
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
875
906
|
"svg",
|
|
876
907
|
{
|
|
877
908
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -885,20 +916,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
885
916
|
strokeLinejoin: "round",
|
|
886
917
|
...props,
|
|
887
918
|
children: [
|
|
888
|
-
/* @__PURE__ */ (0,
|
|
889
|
-
/* @__PURE__ */ (0,
|
|
890
|
-
/* @__PURE__ */ (0,
|
|
891
|
-
/* @__PURE__ */ (0,
|
|
892
|
-
/* @__PURE__ */ (0,
|
|
919
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Program icon" }),
|
|
920
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.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" }),
|
|
921
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M8 10v4" }),
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M12 10v2" }),
|
|
923
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M16 10v6" })
|
|
893
924
|
]
|
|
894
925
|
}
|
|
895
926
|
);
|
|
896
927
|
};
|
|
897
928
|
|
|
898
929
|
// src/risk.tsx
|
|
899
|
-
var
|
|
930
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
900
931
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
901
|
-
return /* @__PURE__ */ (0,
|
|
932
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
902
933
|
"svg",
|
|
903
934
|
{
|
|
904
935
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -912,19 +943,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
912
943
|
strokeLinejoin: "round",
|
|
913
944
|
...props,
|
|
914
945
|
children: [
|
|
915
|
-
/* @__PURE__ */ (0,
|
|
916
|
-
/* @__PURE__ */ (0,
|
|
917
|
-
/* @__PURE__ */ (0,
|
|
918
|
-
/* @__PURE__ */ (0,
|
|
946
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Risk icon" }),
|
|
947
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.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" }),
|
|
948
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M12 8v4" }),
|
|
949
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M12 16h.01" })
|
|
919
950
|
]
|
|
920
951
|
}
|
|
921
952
|
);
|
|
922
953
|
};
|
|
923
954
|
|
|
924
955
|
// src/save.tsx
|
|
925
|
-
var
|
|
956
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
926
957
|
var SaveIcon = (props) => {
|
|
927
|
-
return /* @__PURE__ */ (0,
|
|
958
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
928
959
|
"svg",
|
|
929
960
|
{
|
|
930
961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -938,19 +969,19 @@ var SaveIcon = (props) => {
|
|
|
938
969
|
strokeLinejoin: "round",
|
|
939
970
|
...props,
|
|
940
971
|
children: [
|
|
941
|
-
/* @__PURE__ */ (0,
|
|
942
|
-
/* @__PURE__ */ (0,
|
|
943
|
-
/* @__PURE__ */ (0,
|
|
944
|
-
/* @__PURE__ */ (0,
|
|
972
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Save Icon" }),
|
|
973
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.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" }),
|
|
974
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
975
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
945
976
|
]
|
|
946
977
|
}
|
|
947
978
|
);
|
|
948
979
|
};
|
|
949
980
|
|
|
950
981
|
// src/search.tsx
|
|
951
|
-
var
|
|
982
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
952
983
|
var SearchIcon = (props) => {
|
|
953
|
-
return /* @__PURE__ */ (0,
|
|
984
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
954
985
|
"svg",
|
|
955
986
|
{
|
|
956
987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -964,18 +995,18 @@ var SearchIcon = (props) => {
|
|
|
964
995
|
strokeLinejoin: "round",
|
|
965
996
|
...props,
|
|
966
997
|
children: [
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
968
|
-
/* @__PURE__ */ (0,
|
|
969
|
-
/* @__PURE__ */ (0,
|
|
998
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Search Icon" }),
|
|
999
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1000
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
970
1001
|
]
|
|
971
1002
|
}
|
|
972
1003
|
);
|
|
973
1004
|
};
|
|
974
1005
|
|
|
975
1006
|
// src/settings.tsx
|
|
976
|
-
var
|
|
1007
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
977
1008
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
978
|
-
return /* @__PURE__ */ (0,
|
|
1009
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
979
1010
|
"svg",
|
|
980
1011
|
{
|
|
981
1012
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -989,20 +1020,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
989
1020
|
strokeLinejoin: "round",
|
|
990
1021
|
...props,
|
|
991
1022
|
children: [
|
|
992
|
-
/* @__PURE__ */ (0,
|
|
993
|
-
/* @__PURE__ */ (0,
|
|
994
|
-
/* @__PURE__ */ (0,
|
|
995
|
-
/* @__PURE__ */ (0,
|
|
996
|
-
/* @__PURE__ */ (0,
|
|
1023
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Settings" }),
|
|
1024
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M14 17H5" }),
|
|
1025
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M19 7h-9" }),
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1027
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
997
1028
|
]
|
|
998
1029
|
}
|
|
999
1030
|
);
|
|
1000
1031
|
};
|
|
1001
1032
|
|
|
1002
1033
|
// src/upload.tsx
|
|
1003
|
-
var
|
|
1034
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
1004
1035
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1005
|
-
return /* @__PURE__ */ (0,
|
|
1036
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
1006
1037
|
"svg",
|
|
1007
1038
|
{
|
|
1008
1039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1016,19 +1047,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1016
1047
|
strokeLinejoin: "round",
|
|
1017
1048
|
...props,
|
|
1018
1049
|
children: [
|
|
1019
|
-
/* @__PURE__ */ (0,
|
|
1020
|
-
/* @__PURE__ */ (0,
|
|
1021
|
-
/* @__PURE__ */ (0,
|
|
1022
|
-
/* @__PURE__ */ (0,
|
|
1050
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Upload icon" }),
|
|
1051
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 13v8" }),
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1053
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1023
1054
|
]
|
|
1024
1055
|
}
|
|
1025
1056
|
);
|
|
1026
1057
|
};
|
|
1027
1058
|
|
|
1028
1059
|
// src/vendor.tsx
|
|
1029
|
-
var
|
|
1060
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1030
1061
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1031
|
-
return /* @__PURE__ */ (0,
|
|
1062
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1032
1063
|
"svg",
|
|
1033
1064
|
{
|
|
1034
1065
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1042,12 +1073,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1042
1073
|
strokeLinejoin: "round",
|
|
1043
1074
|
...props,
|
|
1044
1075
|
children: [
|
|
1045
|
-
/* @__PURE__ */ (0,
|
|
1046
|
-
/* @__PURE__ */ (0,
|
|
1047
|
-
/* @__PURE__ */ (0,
|
|
1048
|
-
/* @__PURE__ */ (0,
|
|
1049
|
-
/* @__PURE__ */ (0,
|
|
1050
|
-
/* @__PURE__ */ (0,
|
|
1076
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "Vendor icon" }),
|
|
1077
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.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" }),
|
|
1078
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1079
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1080
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M2 7h20" }),
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.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" })
|
|
1051
1082
|
]
|
|
1052
1083
|
}
|
|
1053
1084
|
);
|
|
@@ -1074,6 +1105,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1074
1105
|
EllipsisIcon,
|
|
1075
1106
|
EyeIcon,
|
|
1076
1107
|
EyeOffIcon,
|
|
1108
|
+
GripVerticalIcon,
|
|
1077
1109
|
IncidentIcon,
|
|
1078
1110
|
IssuesIcon,
|
|
1079
1111
|
LinkedInIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
VendorIcon
|
|
4
|
+
} from "./chunk-5AMD4S26.mjs";
|
|
5
|
+
import {
|
|
6
|
+
ProcessingActivityIcon
|
|
7
|
+
} from "./chunk-Y7DSA4LC.mjs";
|
|
2
8
|
import {
|
|
3
9
|
ProgramIcon
|
|
4
10
|
} from "./chunk-DSI5CQOQ.mjs";
|
|
@@ -18,8 +24,8 @@ import {
|
|
|
18
24
|
UploadIcon
|
|
19
25
|
} from "./chunk-WPTOAHE7.mjs";
|
|
20
26
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
27
|
+
LinkedInIcon
|
|
28
|
+
} from "./chunk-M2RUR5WR.mjs";
|
|
23
29
|
import {
|
|
24
30
|
MinusIcon
|
|
25
31
|
} from "./chunk-6TEI2IX4.mjs";
|
|
@@ -41,9 +47,6 @@ import {
|
|
|
41
47
|
import {
|
|
42
48
|
PlusIcon
|
|
43
49
|
} from "./chunk-VT4DJPGF.mjs";
|
|
44
|
-
import {
|
|
45
|
-
ProcessingActivityIcon
|
|
46
|
-
} from "./chunk-Y7DSA4LC.mjs";
|
|
47
50
|
import {
|
|
48
51
|
DSARIcon
|
|
49
52
|
} from "./chunk-DRZOZSLJ.mjs";
|
|
@@ -56,15 +59,15 @@ import {
|
|
|
56
59
|
import {
|
|
57
60
|
EyeIcon
|
|
58
61
|
} from "./chunk-K6ICW5LE.mjs";
|
|
62
|
+
import {
|
|
63
|
+
GripVerticalIcon
|
|
64
|
+
} from "./chunk-GPAMXO65.mjs";
|
|
59
65
|
import {
|
|
60
66
|
IncidentIcon
|
|
61
67
|
} from "./chunk-EIACNJBZ.mjs";
|
|
62
68
|
import {
|
|
63
69
|
IssuesIcon
|
|
64
70
|
} from "./chunk-HOWMZ73X.mjs";
|
|
65
|
-
import {
|
|
66
|
-
LinkedInIcon
|
|
67
|
-
} from "./chunk-M2RUR5WR.mjs";
|
|
68
71
|
import {
|
|
69
72
|
ChevronLeftIcon
|
|
70
73
|
} from "./chunk-NKQY55QT.mjs";
|
|
@@ -134,6 +137,7 @@ export {
|
|
|
134
137
|
EllipsisIcon,
|
|
135
138
|
EyeIcon,
|
|
136
139
|
EyeOffIcon,
|
|
140
|
+
GripVerticalIcon,
|
|
137
141
|
IncidentIcon,
|
|
138
142
|
IssuesIcon,
|
|
139
143
|
LinkedInIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.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.6.
|
|
30
|
+
"@kopexa/theme": "1.6.2"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.5",
|