@kopexa/icons 17.9.3 → 17.10.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.
Files changed (40) hide show
  1. package/dist/chunk-2TP5O6KW.mjs +32 -0
  2. package/dist/chunk-6JCEPUNT.mjs +31 -0
  3. package/dist/chunk-7KZ5VHQC.mjs +32 -0
  4. package/dist/chunk-KKJMTXPQ.mjs +30 -0
  5. package/dist/chunk-KP6ARADS.mjs +32 -0
  6. package/dist/chunk-LQZRR6AB.mjs +30 -0
  7. package/dist/chunk-OJNFRMOD.mjs +33 -0
  8. package/dist/contact-icon.d.mts +7 -0
  9. package/dist/contact-icon.d.ts +7 -0
  10. package/dist/contact-icon.js +56 -0
  11. package/dist/contact-icon.mjs +7 -0
  12. package/dist/dashboard-icon.d.mts +7 -0
  13. package/dist/dashboard-icon.d.ts +7 -0
  14. package/dist/dashboard-icon.js +55 -0
  15. package/dist/dashboard-icon.mjs +7 -0
  16. package/dist/index.d.mts +7 -0
  17. package/dist/index.d.ts +7 -0
  18. package/dist/index.js +742 -543
  19. package/dist/index.mjs +98 -70
  20. package/dist/kpi-icon.d.mts +7 -0
  21. package/dist/kpi-icon.d.ts +7 -0
  22. package/dist/kpi-icon.js +53 -0
  23. package/dist/kpi-icon.mjs +7 -0
  24. package/dist/objective-icon.d.mts +7 -0
  25. package/dist/objective-icon.d.ts +7 -0
  26. package/dist/objective-icon.js +54 -0
  27. package/dist/objective-icon.mjs +7 -0
  28. package/dist/risk-opportunity-icon.d.mts +7 -0
  29. package/dist/risk-opportunity-icon.d.ts +7 -0
  30. package/dist/risk-opportunity-icon.js +55 -0
  31. package/dist/risk-opportunity-icon.mjs +7 -0
  32. package/dist/stakeholder-icon.d.mts +7 -0
  33. package/dist/stakeholder-icon.d.ts +7 -0
  34. package/dist/stakeholder-icon.js +55 -0
  35. package/dist/stakeholder-icon.mjs +7 -0
  36. package/dist/trust-center-icon.d.mts +7 -0
  37. package/dist/trust-center-icon.d.ts +7 -0
  38. package/dist/trust-center-icon.js +53 -0
  39. package/dist/trust-center-icon.mjs +7 -0
  40. package/package.json +4 -4
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/risk-opportunity-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var RiskOpportunityIcon = ({ 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: "Risk Opportunity Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z" }),
22
+ /* @__PURE__ */ jsx("path", { d: "m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0" }),
24
+ /* @__PURE__ */ jsx("path", { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ RiskOpportunityIcon
32
+ };
@@ -0,0 +1,31 @@
1
+ "use client";
2
+
3
+ // src/objective-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var ObjectiveIcon = ({ 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: "Objective Icon" }),
21
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
22
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "6" }),
23
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2" })
24
+ ]
25
+ }
26
+ );
27
+ };
28
+
29
+ export {
30
+ ObjectiveIcon
31
+ };
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/stakeholder-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var StakeholderIcon = ({ 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: "Stakeholder Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
22
+ /* @__PURE__ */ jsx("circle", { cx: "9", cy: "7", r: "4" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
24
+ /* @__PURE__ */ jsx("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ StakeholderIcon
32
+ };
@@ -0,0 +1,30 @@
1
+ "use client";
2
+
3
+ // src/trust-center-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var TrustCenterIcon = ({ 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: "Trust Center Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10" }),
22
+ /* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
23
+ ]
24
+ }
25
+ );
26
+ };
27
+
28
+ export {
29
+ TrustCenterIcon
30
+ };
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/dashboard-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var DashboardIcon = ({ 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: "Dashboard Icon" }),
21
+ /* @__PURE__ */ jsx("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
22
+ /* @__PURE__ */ jsx("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
23
+ /* @__PURE__ */ jsx("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
24
+ /* @__PURE__ */ jsx("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ DashboardIcon
32
+ };
@@ -0,0 +1,30 @@
1
+ "use client";
2
+
3
+ // src/kpi-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var KpiIcon = ({ 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: "KPI Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M3 3v16a2 2 0 0 0 2 2h16" }),
22
+ /* @__PURE__ */ jsx("path", { d: "m19 9-5 5-4-4-3 3" })
23
+ ]
24
+ }
25
+ );
26
+ };
27
+
28
+ export {
29
+ KpiIcon
30
+ };
@@ -0,0 +1,33 @@
1
+ "use client";
2
+
3
+ // src/contact-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var ContactIcon = ({ 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: "Contact Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2" }),
22
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
23
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "10", r: "2" }),
24
+ /* @__PURE__ */ jsx("line", { x1: "8", x2: "8", y1: "2", y2: "4" }),
25
+ /* @__PURE__ */ jsx("line", { x1: "16", x2: "16", y1: "2", y2: "4" })
26
+ ]
27
+ }
28
+ );
29
+ };
30
+
31
+ export {
32
+ ContactIcon
33
+ };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.mjs';
3
+ import 'react';
4
+
5
+ declare const ContactIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { ContactIcon };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.js';
3
+ import 'react';
4
+
5
+ declare const ContactIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { ContactIcon };
@@ -0,0 +1,56 @@
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/contact-icon.tsx
22
+ var contact_icon_exports = {};
23
+ __export(contact_icon_exports, {
24
+ ContactIcon: () => ContactIcon
25
+ });
26
+ module.exports = __toCommonJS(contact_icon_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var ContactIcon = ({ 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: "Contact Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "10", r: "2" }),
47
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "8", x2: "8", y1: "2", y2: "4" }),
48
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "16", x2: "16", y1: "2", y2: "4" })
49
+ ]
50
+ }
51
+ );
52
+ };
53
+ // Annotate the CommonJS export names for ESM import in node:
54
+ 0 && (module.exports = {
55
+ ContactIcon
56
+ });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ ContactIcon
4
+ } from "./chunk-OJNFRMOD.mjs";
5
+ export {
6
+ ContactIcon
7
+ };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.mjs';
3
+ import 'react';
4
+
5
+ declare const DashboardIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { DashboardIcon };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.js';
3
+ import 'react';
4
+
5
+ declare const DashboardIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { DashboardIcon };
@@ -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/dashboard-icon.tsx
22
+ var dashboard_icon_exports = {};
23
+ __export(dashboard_icon_exports, {
24
+ DashboardIcon: () => DashboardIcon
25
+ });
26
+ module.exports = __toCommonJS(dashboard_icon_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var DashboardIcon = ({ 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: "Dashboard Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
47
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
48
+ ]
49
+ }
50
+ );
51
+ };
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ DashboardIcon
55
+ });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ DashboardIcon
4
+ } from "./chunk-KP6ARADS.mjs";
5
+ export {
6
+ DashboardIcon
7
+ };
package/dist/index.d.mts CHANGED
@@ -46,11 +46,13 @@ export { CloudIcon } from './cloud-icon.mjs';
46
46
  export { CodeBlockIcon } from './code-block-icon.mjs';
47
47
  export { CodeIcon } from './code-icon.mjs';
48
48
  export { CodeblockIcon } from './codeblock-icon.mjs';
49
+ export { ContactIcon } from './contact-icon.mjs';
49
50
  export { ControlImplementationIcon } from './control-implementation-icon.mjs';
50
51
  export { ControlsIcon } from './controls.mjs';
51
52
  export { CopyIcon } from './copy-icon.mjs';
52
53
  export { CornerDownLeftIcon } from './corner-down-left-icon.mjs';
53
54
  export { CropIcon } from './crop-icon.mjs';
55
+ export { DashboardIcon } from './dashboard-icon.mjs';
54
56
  export { DataAssetIcon } from './data-asset.mjs';
55
57
  export { DocumentsIcon } from './documents.mjs';
56
58
  export { DomainIcon } from './domain-icon.mjs';
@@ -84,6 +86,7 @@ export { InfoIcon } from './info.mjs';
84
86
  export { InformationAssetIcon } from './information-asset.mjs';
85
87
  export { IssuesIcon } from './issues.mjs';
86
88
  export { ItalicIcon } from './italic-icon.mjs';
89
+ export { KpiIcon } from './kpi-icon.mjs';
87
90
  export { LabelIcon } from './label-icon.mjs';
88
91
  export { LinkIcon } from './link-icon.mjs';
89
92
  export { LinkedInIcon } from './linkedin.mjs';
@@ -96,6 +99,7 @@ export { MinusIcon } from './minus.mjs';
96
99
  export { MoreVerticalIcon } from './more-vertical-icon.mjs';
97
100
  export { NIS2Icon } from './nis2-icon.mjs';
98
101
  export { NotificationIcon } from './notification-icon.mjs';
102
+ export { ObjectiveIcon } from './objective-icon.mjs';
99
103
  export { PaletteIcon } from './palette-icon.mjs';
100
104
  export { PanelLeftIcon } from './panel-left-icon.mjs';
101
105
  export { PeopleIcon } from './people.mjs';
@@ -110,6 +114,7 @@ export { QuestionCircleIcon } from './question-circle-icon.mjs';
110
114
  export { RedoIcon } from './redo-icon.mjs';
111
115
  export { RetentionPolicyIcon } from './retention-policy-icon.mjs';
112
116
  export { RiskIcon } from './risk.mjs';
117
+ export { RiskOpportunityIcon } from './risk-opportunity-icon.mjs';
113
118
  export { RotateCcwIcon } from './rotate-ccw-icon.mjs';
114
119
  export { SaveIcon } from './save.mjs';
115
120
  export { SearchIcon } from './search.mjs';
@@ -120,6 +125,7 @@ export { ShieldCheckIcon } from './shield-check-icon.mjs';
120
125
  export { SoftwareAssetIcon } from './software-asset.mjs';
121
126
  export { SquareXIcon } from './square-x-icon.mjs';
122
127
  export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.mjs';
128
+ export { StakeholderIcon } from './stakeholder-icon.mjs';
123
129
  export { StrikeIcon } from './strike-icon.mjs';
124
130
  export { SubscriptIcon } from './subscript-icon.mjs';
125
131
  export { SuperscriptIcon } from './superscript-icon.mjs';
@@ -131,6 +137,7 @@ export { TableIcon } from './table-icon.mjs';
131
137
  export { TableOfContentsIcon } from './table-of-contents-icon.mjs';
132
138
  export { TomIcon } from './tom-icon.mjs';
133
139
  export { TrashIcon } from './trash-icon.mjs';
140
+ export { TrustCenterIcon } from './trust-center-icon.mjs';
134
141
  export { TypeIcon } from './type-icon.mjs';
135
142
  export { IconSvgProps } from './types.mjs';
136
143
  export { UnderlineIcon } from './underline-icon.mjs';
package/dist/index.d.ts CHANGED
@@ -46,11 +46,13 @@ export { CloudIcon } from './cloud-icon.js';
46
46
  export { CodeBlockIcon } from './code-block-icon.js';
47
47
  export { CodeIcon } from './code-icon.js';
48
48
  export { CodeblockIcon } from './codeblock-icon.js';
49
+ export { ContactIcon } from './contact-icon.js';
49
50
  export { ControlImplementationIcon } from './control-implementation-icon.js';
50
51
  export { ControlsIcon } from './controls.js';
51
52
  export { CopyIcon } from './copy-icon.js';
52
53
  export { CornerDownLeftIcon } from './corner-down-left-icon.js';
53
54
  export { CropIcon } from './crop-icon.js';
55
+ export { DashboardIcon } from './dashboard-icon.js';
54
56
  export { DataAssetIcon } from './data-asset.js';
55
57
  export { DocumentsIcon } from './documents.js';
56
58
  export { DomainIcon } from './domain-icon.js';
@@ -84,6 +86,7 @@ export { InfoIcon } from './info.js';
84
86
  export { InformationAssetIcon } from './information-asset.js';
85
87
  export { IssuesIcon } from './issues.js';
86
88
  export { ItalicIcon } from './italic-icon.js';
89
+ export { KpiIcon } from './kpi-icon.js';
87
90
  export { LabelIcon } from './label-icon.js';
88
91
  export { LinkIcon } from './link-icon.js';
89
92
  export { LinkedInIcon } from './linkedin.js';
@@ -96,6 +99,7 @@ export { MinusIcon } from './minus.js';
96
99
  export { MoreVerticalIcon } from './more-vertical-icon.js';
97
100
  export { NIS2Icon } from './nis2-icon.js';
98
101
  export { NotificationIcon } from './notification-icon.js';
102
+ export { ObjectiveIcon } from './objective-icon.js';
99
103
  export { PaletteIcon } from './palette-icon.js';
100
104
  export { PanelLeftIcon } from './panel-left-icon.js';
101
105
  export { PeopleIcon } from './people.js';
@@ -110,6 +114,7 @@ export { QuestionCircleIcon } from './question-circle-icon.js';
110
114
  export { RedoIcon } from './redo-icon.js';
111
115
  export { RetentionPolicyIcon } from './retention-policy-icon.js';
112
116
  export { RiskIcon } from './risk.js';
117
+ export { RiskOpportunityIcon } from './risk-opportunity-icon.js';
113
118
  export { RotateCcwIcon } from './rotate-ccw-icon.js';
114
119
  export { SaveIcon } from './save.js';
115
120
  export { SearchIcon } from './search.js';
@@ -120,6 +125,7 @@ export { ShieldCheckIcon } from './shield-check-icon.js';
120
125
  export { SoftwareAssetIcon } from './software-asset.js';
121
126
  export { SquareXIcon } from './square-x-icon.js';
122
127
  export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.js';
128
+ export { StakeholderIcon } from './stakeholder-icon.js';
123
129
  export { StrikeIcon } from './strike-icon.js';
124
130
  export { SubscriptIcon } from './subscript-icon.js';
125
131
  export { SuperscriptIcon } from './superscript-icon.js';
@@ -131,6 +137,7 @@ export { TableIcon } from './table-icon.js';
131
137
  export { TableOfContentsIcon } from './table-of-contents-icon.js';
132
138
  export { TomIcon } from './tom-icon.js';
133
139
  export { TrashIcon } from './trash-icon.js';
140
+ export { TrustCenterIcon } from './trust-center-icon.js';
134
141
  export { TypeIcon } from './type-icon.js';
135
142
  export { IconSvgProps } from './types.js';
136
143
  export { UnderlineIcon } from './underline-icon.js';