@kopexa/icons 14.0.4 → 16.0.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 (39) hide show
  1. package/dist/chunk-3JXKSUZM.mjs +32 -0
  2. package/dist/chunk-BWDN6UYW.mjs +31 -0
  3. package/dist/chunk-FC53C5SU.mjs +32 -0
  4. package/dist/{chunk-EYRH6VZB.mjs → chunk-HKQHNRPE.mjs} +4 -4
  5. package/dist/{chunk-V6QXOK5V.mjs → chunk-JO2DHXG7.mjs} +4 -4
  6. package/dist/{chunk-WWSIRUDQ.mjs → chunk-MZBAUZ2W.mjs} +4 -4
  7. package/dist/hardware-asset.d.mts +7 -0
  8. package/dist/hardware-asset.d.ts +7 -0
  9. package/dist/{plattform-asset.js → hardware-asset.js} +8 -8
  10. package/dist/hardware-asset.mjs +7 -0
  11. package/dist/index.d.mts +5 -2
  12. package/dist/index.d.ts +5 -2
  13. package/dist/index.js +508 -422
  14. package/dist/index.mjs +48 -36
  15. package/dist/physical-asset.js +4 -4
  16. package/dist/physical-asset.mjs +1 -1
  17. package/dist/process-category.d.mts +7 -0
  18. package/dist/process-category.d.ts +7 -0
  19. package/dist/process-category.js +54 -0
  20. package/dist/process-category.mjs +7 -0
  21. package/dist/process.d.mts +7 -0
  22. package/dist/process.d.ts +7 -0
  23. package/dist/process.js +55 -0
  24. package/dist/process.mjs +7 -0
  25. package/dist/service-asset.d.mts +7 -0
  26. package/dist/service-asset.d.ts +7 -0
  27. package/dist/service-asset.js +55 -0
  28. package/dist/service-asset.mjs +7 -0
  29. package/dist/software-asset.d.mts +7 -0
  30. package/dist/software-asset.d.ts +7 -0
  31. package/dist/{application-asset.js → software-asset.js} +8 -8
  32. package/dist/software-asset.mjs +7 -0
  33. package/package.json +4 -4
  34. package/dist/application-asset.d.mts +0 -7
  35. package/dist/application-asset.d.ts +0 -7
  36. package/dist/application-asset.mjs +0 -7
  37. package/dist/plattform-asset.d.mts +0 -7
  38. package/dist/plattform-asset.d.ts +0 -7
  39. package/dist/plattform-asset.mjs +0 -7
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/physical-asset.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ width: size,
11
+ height: size,
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ stroke: "currentColor",
15
+ strokeWidth: "2",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: "Physical Asset icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M6 13h12" }),
24
+ /* @__PURE__ */ jsx("path", { d: "M6 17h12" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ PhysicalAssetIcon
32
+ };
@@ -0,0 +1,31 @@
1
+ "use client";
2
+
3
+ // src/process-category.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var ProcessCategoryIcon = ({ 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: "Process category icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20" }),
22
+ /* @__PURE__ */ jsx("path", { d: "m8 13 4-7 4 7" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M9.1 11h5.7" })
24
+ ]
25
+ }
26
+ );
27
+ };
28
+
29
+ export {
30
+ ProcessCategoryIcon
31
+ };
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/process.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var ProcessIcon = ({ 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: "Process icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M16 5H3" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M16 12H3" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M11 19H3" }),
24
+ /* @__PURE__ */ jsx("path", { d: "m15 18 2 2 4-4" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ ProcessIcon
32
+ };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
 
3
- // src/application-asset.tsx
3
+ // src/software-asset.tsx
4
4
  import { jsx, jsxs } from "react/jsx-runtime";
5
- var ApplicationAssetIcon = ({ size = 24, ...props }) => {
5
+ var SoftwareAssetIcon = ({ size = 24, ...props }) => {
6
6
  return /* @__PURE__ */ jsxs(
7
7
  "svg",
8
8
  {
@@ -17,7 +17,7 @@ var ApplicationAssetIcon = ({ size = 24, ...props }) => {
17
17
  strokeLinejoin: "round",
18
18
  ...props,
19
19
  children: [
20
- /* @__PURE__ */ jsx("title", { children: "Application Asset Icon" }),
20
+ /* @__PURE__ */ jsx("title", { children: "Software Asset Icon" }),
21
21
  /* @__PURE__ */ jsx("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
22
22
  /* @__PURE__ */ jsx("path", { d: "M6 8h.01" }),
23
23
  /* @__PURE__ */ jsx("path", { d: "M10 8h.01" }),
@@ -28,5 +28,5 @@ var ApplicationAssetIcon = ({ size = 24, ...props }) => {
28
28
  };
29
29
 
30
30
  export {
31
- ApplicationAssetIcon
31
+ SoftwareAssetIcon
32
32
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
 
3
- // src/physical-asset.tsx
3
+ // src/service-asset.tsx
4
4
  import { jsx, jsxs } from "react/jsx-runtime";
5
- var PhysicalAssetIcon = ({ size = 24, ...props }) => {
5
+ var ServiceAssetIcon = ({ size = 24, ...props }) => {
6
6
  return /* @__PURE__ */ jsxs(
7
7
  "svg",
8
8
  {
@@ -17,7 +17,7 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
17
17
  strokeLinejoin: "round",
18
18
  ...props,
19
19
  children: [
20
- /* @__PURE__ */ jsx("title", { children: "Physical Asset icon" }),
20
+ /* @__PURE__ */ jsx("title", { children: "Service Asset icon" }),
21
21
  /* @__PURE__ */ jsx("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
22
22
  /* @__PURE__ */ jsx("path", { d: "M10 19v-3.96 3.15" }),
23
23
  /* @__PURE__ */ jsx("path", { d: "M7 19h5" }),
@@ -28,5 +28,5 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
28
28
  };
29
29
 
30
30
  export {
31
- PhysicalAssetIcon
31
+ ServiceAssetIcon
32
32
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
 
3
- // src/plattform-asset.tsx
3
+ // src/hardware-asset.tsx
4
4
  import { jsx, jsxs } from "react/jsx-runtime";
5
- var PlattformAssetIcon = ({ size = 24, ...props }) => {
5
+ var HardwareAssetIcon = ({ size = 24, ...props }) => {
6
6
  return /* @__PURE__ */ jsxs(
7
7
  "svg",
8
8
  {
@@ -17,7 +17,7 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
17
17
  strokeLinejoin: "round",
18
18
  ...props,
19
19
  children: [
20
- /* @__PURE__ */ jsx("title", { children: "Plattform Asset icon" }),
20
+ /* @__PURE__ */ jsx("title", { children: "Hardware Asset icon" }),
21
21
  /* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
22
22
  /* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
23
23
  /* @__PURE__ */ jsx("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
@@ -28,5 +28,5 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
28
28
  };
29
29
 
30
30
  export {
31
- PlattformAssetIcon
31
+ HardwareAssetIcon
32
32
  };
@@ -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 HardwareAssetIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { HardwareAssetIcon };
@@ -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 HardwareAssetIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { HardwareAssetIcon };
@@ -18,14 +18,14 @@ var __copyProps = (to, from, except, desc) => {
18
18
  };
19
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
20
 
21
- // src/plattform-asset.tsx
22
- var plattform_asset_exports = {};
23
- __export(plattform_asset_exports, {
24
- PlattformAssetIcon: () => PlattformAssetIcon
21
+ // src/hardware-asset.tsx
22
+ var hardware_asset_exports = {};
23
+ __export(hardware_asset_exports, {
24
+ HardwareAssetIcon: () => HardwareAssetIcon
25
25
  });
26
- module.exports = __toCommonJS(plattform_asset_exports);
26
+ module.exports = __toCommonJS(hardware_asset_exports);
27
27
  var import_jsx_runtime = require("react/jsx-runtime");
28
- var PlattformAssetIcon = ({ size = 24, ...props }) => {
28
+ var HardwareAssetIcon = ({ size = 24, ...props }) => {
29
29
  return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
30
30
  "svg",
31
31
  {
@@ -40,7 +40,7 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
40
40
  strokeLinejoin: "round",
41
41
  ...props,
42
42
  children: [
43
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Plattform Asset icon" }),
43
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Hardware Asset icon" }),
44
44
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
45
45
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
46
46
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
@@ -51,5 +51,5 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
51
51
  };
52
52
  // Annotate the CommonJS export names for ESM import in node:
53
53
  0 && (module.exports = {
54
- PlattformAssetIcon
54
+ HardwareAssetIcon
55
55
  });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ HardwareAssetIcon
4
+ } from "./chunk-MZBAUZ2W.mjs";
5
+ export {
6
+ HardwareAssetIcon
7
+ };
package/dist/index.d.mts CHANGED
@@ -5,7 +5,6 @@ export { AlignCenterIcon } from './align-center-icon.mjs';
5
5
  export { AlignJustifyIcon } from './align-justify-icon.mjs';
6
6
  export { AlignLeftIcon } from './align-left-icon.mjs';
7
7
  export { AlignRightIcon } from './align-right-icon.mjs';
8
- export { ApplicationAssetIcon } from './application-asset.mjs';
9
8
  export { ArrowCounterClockwiseIcon } from './arrow-counter-clockwise-icon.mjs';
10
9
  export { ArrowDown } from './arrow-down.mjs';
11
10
  export { ArrowDownUp } from './arrow-down-up.mjs';
@@ -48,6 +47,7 @@ export { EyeIcon } from './eye.mjs';
48
47
  export { EyeOffIcon } from './eye-off.mjs';
49
48
  export { GlobeIcon } from './globe-icon.mjs';
50
49
  export { GripVerticalIcon } from './grip-vertical.mjs';
50
+ export { HardwareAssetIcon } from './hardware-asset.mjs';
51
51
  export { HeadingFiveIcon } from './heading-five-icon.mjs';
52
52
  export { HeadingFourIcon } from './heading-four-icon.mjs';
53
53
  export { HeadingIcon } from './heading-icon.mjs';
@@ -72,8 +72,9 @@ export { NotificationIcon } from './notification-icon.mjs';
72
72
  export { PanelLeftIcon } from './panel-left-icon.mjs';
73
73
  export { PeopleIcon } from './people.mjs';
74
74
  export { PhysicalAssetIcon } from './physical-asset.mjs';
75
- export { PlattformAssetIcon } from './plattform-asset.mjs';
76
75
  export { PlusIcon } from './plus.mjs';
76
+ export { ProcessIcon } from './process.mjs';
77
+ export { ProcessCategoryIcon } from './process-category.mjs';
77
78
  export { ProcessingActivityIcon } from './processing-activity.mjs';
78
79
  export { ProgramIcon } from './program-icon.mjs';
79
80
  export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.mjs';
@@ -82,8 +83,10 @@ export { RiskIcon } from './risk.mjs';
82
83
  export { RotateCcwIcon } from './rotate-ccw-icon.mjs';
83
84
  export { SaveIcon } from './save.mjs';
84
85
  export { SearchIcon } from './search.mjs';
86
+ export { ServiceAssetIcon } from './service-asset.mjs';
85
87
  export { SettingsIcon } from './settings.mjs';
86
88
  export { ShellIcon } from './shell.mjs';
89
+ export { SoftwareAssetIcon } from './software-asset.mjs';
87
90
  export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.mjs';
88
91
  export { StrikeIcon } from './strike-icon.mjs';
89
92
  export { SubscriptIcon } from './subscript-icon.mjs';
package/dist/index.d.ts CHANGED
@@ -5,7 +5,6 @@ export { AlignCenterIcon } from './align-center-icon.js';
5
5
  export { AlignJustifyIcon } from './align-justify-icon.js';
6
6
  export { AlignLeftIcon } from './align-left-icon.js';
7
7
  export { AlignRightIcon } from './align-right-icon.js';
8
- export { ApplicationAssetIcon } from './application-asset.js';
9
8
  export { ArrowCounterClockwiseIcon } from './arrow-counter-clockwise-icon.js';
10
9
  export { ArrowDown } from './arrow-down.js';
11
10
  export { ArrowDownUp } from './arrow-down-up.js';
@@ -48,6 +47,7 @@ export { EyeIcon } from './eye.js';
48
47
  export { EyeOffIcon } from './eye-off.js';
49
48
  export { GlobeIcon } from './globe-icon.js';
50
49
  export { GripVerticalIcon } from './grip-vertical.js';
50
+ export { HardwareAssetIcon } from './hardware-asset.js';
51
51
  export { HeadingFiveIcon } from './heading-five-icon.js';
52
52
  export { HeadingFourIcon } from './heading-four-icon.js';
53
53
  export { HeadingIcon } from './heading-icon.js';
@@ -72,8 +72,9 @@ export { NotificationIcon } from './notification-icon.js';
72
72
  export { PanelLeftIcon } from './panel-left-icon.js';
73
73
  export { PeopleIcon } from './people.js';
74
74
  export { PhysicalAssetIcon } from './physical-asset.js';
75
- export { PlattformAssetIcon } from './plattform-asset.js';
76
75
  export { PlusIcon } from './plus.js';
76
+ export { ProcessIcon } from './process.js';
77
+ export { ProcessCategoryIcon } from './process-category.js';
77
78
  export { ProcessingActivityIcon } from './processing-activity.js';
78
79
  export { ProgramIcon } from './program-icon.js';
79
80
  export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.js';
@@ -82,8 +83,10 @@ export { RiskIcon } from './risk.js';
82
83
  export { RotateCcwIcon } from './rotate-ccw-icon.js';
83
84
  export { SaveIcon } from './save.js';
84
85
  export { SearchIcon } from './search.js';
86
+ export { ServiceAssetIcon } from './service-asset.js';
85
87
  export { SettingsIcon } from './settings.js';
86
88
  export { ShellIcon } from './shell.js';
89
+ export { SoftwareAssetIcon } from './software-asset.js';
87
90
  export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.js';
88
91
  export { StrikeIcon } from './strike-icon.js';
89
92
  export { SubscriptIcon } from './subscript-icon.js';