@kopexa/icons 17.9.2 → 17.10.0

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,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/trust-center-icon.tsx
22
+ var trust_center_icon_exports = {};
23
+ __export(trust_center_icon_exports, {
24
+ TrustCenterIcon: () => TrustCenterIcon
25
+ });
26
+ module.exports = __toCommonJS(trust_center_icon_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var TrustCenterIcon = ({ 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: "Trust Center Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 12 2 2 4-4" })
46
+ ]
47
+ }
48
+ );
49
+ };
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ TrustCenterIcon
53
+ });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ TrustCenterIcon
4
+ } from "./chunk-KKJMTXPQ.mjs";
5
+ export {
6
+ TrustCenterIcon
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/icons",
3
- "version": "17.9.2",
3
+ "version": "17.10.0",
4
4
  "description": "icons we use in our kopexa products",
5
5
  "keywords": [
6
6
  "icons"
@@ -27,11 +27,11 @@
27
27
  "peerDependencies": {
28
28
  "react": ">=19.0.0-rc.0",
29
29
  "react-dom": ">=19.0.0-rc.0",
30
- "@kopexa/theme": "17.26.6"
30
+ "@kopexa/theme": "17.26.8"
31
31
  },
32
32
  "dependencies": {
33
- "@kopexa/shared-utils": "17.0.69",
34
- "@kopexa/react-utils": "17.1.11"
33
+ "@kopexa/shared-utils": "17.0.71",
34
+ "@kopexa/react-utils": "17.1.13"
35
35
  },
36
36
  "clean-package": "../../../clean-package.config.json",
37
37
  "module": "dist/index.mjs",