@kopexa/icons 17.4.0 → 17.5.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.
- package/README.md +5 -1
- package/dist/bell-icon.d.mts +7 -0
- package/dist/bell-icon.d.ts +7 -0
- package/dist/bell-icon.js +53 -0
- package/dist/bell-icon.mjs +7 -0
- package/dist/chunk-26IPMUAF.mjs +30 -0
- package/dist/chunk-C4DGBXAL.mjs +29 -0
- package/dist/chunk-F5BKZUZN.mjs +30 -0
- package/dist/chunk-KFTH3FPV.mjs +33 -0
- package/dist/chunk-KQMUJCYE.mjs +33 -0
- package/dist/chunk-Q7553YRX.mjs +33 -0
- package/dist/chunk-QMC7PT3F.mjs +30 -0
- package/dist/chunk-QVGQLKOA.mjs +31 -0
- package/dist/chunk-YA4V4L55.mjs +30 -0
- package/dist/chunk-ZYF6O3PM.mjs +30 -0
- package/dist/cloud-icon.d.mts +7 -0
- package/dist/cloud-icon.d.ts +7 -0
- package/dist/cloud-icon.js +52 -0
- package/dist/cloud-icon.mjs +7 -0
- package/dist/control-implementation-icon.d.mts +7 -0
- package/dist/control-implementation-icon.d.ts +7 -0
- package/dist/control-implementation-icon.js +56 -0
- package/dist/control-implementation-icon.mjs +7 -0
- package/dist/file-text-icon.d.mts +7 -0
- package/dist/file-text-icon.d.ts +7 -0
- package/dist/file-text-icon.js +56 -0
- package/dist/file-text-icon.mjs +7 -0
- package/dist/gear-icon.d.mts +7 -0
- package/dist/gear-icon.d.ts +7 -0
- package/dist/gear-icon.js +53 -0
- package/dist/gear-icon.mjs +7 -0
- package/dist/home-icon.d.mts +7 -0
- package/dist/home-icon.d.ts +7 -0
- package/dist/home-icon.js +53 -0
- package/dist/home-icon.mjs +7 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +845 -566
- package/dist/index.mjs +98 -58
- package/dist/lock-icon.d.mts +7 -0
- package/dist/lock-icon.d.ts +7 -0
- package/dist/lock-icon.js +53 -0
- package/dist/lock-icon.mjs +7 -0
- package/dist/palette-icon.d.mts +7 -0
- package/dist/palette-icon.d.ts +7 -0
- package/dist/palette-icon.js +56 -0
- package/dist/palette-icon.mjs +7 -0
- package/dist/question-circle-icon.d.mts +7 -0
- package/dist/question-circle-icon.d.ts +7 -0
- package/dist/question-circle-icon.js +54 -0
- package/dist/question-circle-icon.mjs +7 -0
- package/dist/shield-check-icon.d.mts +7 -0
- package/dist/shield-check-icon.d.ts +7 -0
- package/dist/shield-check-icon.js +53 -0
- package/dist/shield-check-icon.mjs +7 -0
- 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/gear-icon.tsx
|
|
22
|
+
var gear_icon_exports = {};
|
|
23
|
+
__export(gear_icon_exports, {
|
|
24
|
+
GearIcon: () => GearIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(gear_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var GearIcon = ({ 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: "Gear" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
GearIcon
|
|
53
|
+
});
|
|
@@ -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/home-icon.tsx
|
|
22
|
+
var home_icon_exports = {};
|
|
23
|
+
__export(home_icon_exports, {
|
|
24
|
+
HomeIcon: () => HomeIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(home_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
function HomeIcon(props) {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: "24",
|
|
34
|
+
height: "24",
|
|
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: "Home" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
HomeIcon
|
|
53
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -12,6 +12,7 @@ export { ArrowRightIcon } from './arrow-right-icon.mjs';
|
|
|
12
12
|
export { ArrowUp } from './arrow-up.mjs';
|
|
13
13
|
export { AssetsIcon } from './assets.mjs';
|
|
14
14
|
export { BanIcon } from './ban-icon.mjs';
|
|
15
|
+
export { BellIcon } from './bell-icon.mjs';
|
|
15
16
|
export { BlockquoteIcon } from './blockquote-icon.mjs';
|
|
16
17
|
export { BoldIcon } from './bold-icon.mjs';
|
|
17
18
|
export { BusinessUnitIcon } from './business-unit.mjs';
|
|
@@ -30,9 +31,11 @@ export { CircleIcon } from './circle.mjs';
|
|
|
30
31
|
export { CircleDotIcon, CircleDotIcon as SubsetIcon } from './circle-dot-icon.mjs';
|
|
31
32
|
export { CircleFadingArrowUpIcon, CircleFadingArrowUpIcon as SupersetIcon } from './circle-fading-arrow-up-icon.mjs';
|
|
32
33
|
export { CloseIcon } from './close.mjs';
|
|
34
|
+
export { CloudIcon } from './cloud-icon.mjs';
|
|
33
35
|
export { CodeBlockIcon } from './code-block-icon.mjs';
|
|
34
36
|
export { CodeIcon } from './code-icon.mjs';
|
|
35
37
|
export { CodeblockIcon } from './codeblock-icon.mjs';
|
|
38
|
+
export { ControlImplementationIcon } from './control-implementation-icon.mjs';
|
|
36
39
|
export { ControlsIcon } from './controls.mjs';
|
|
37
40
|
export { CopyIcon } from './copy-icon.mjs';
|
|
38
41
|
export { CornerDownLeftIcon } from './corner-down-left-icon.mjs';
|
|
@@ -49,6 +52,8 @@ export { EqualsIcon } from './equals-icon.mjs';
|
|
|
49
52
|
export { ExternalLinkIcon } from './external-link-icon.mjs';
|
|
50
53
|
export { EyeIcon } from './eye.mjs';
|
|
51
54
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
55
|
+
export { FileTextIcon } from './file-text-icon.mjs';
|
|
56
|
+
export { GearIcon } from './gear-icon.mjs';
|
|
52
57
|
export { GlobeIcon } from './globe-icon.mjs';
|
|
53
58
|
export { GripVerticalIcon } from './grip-vertical.mjs';
|
|
54
59
|
export { HardwareAssetIcon } from './hardware-asset.mjs';
|
|
@@ -60,6 +65,7 @@ export { HeadingSixIcon } from './heading-six-icon.mjs';
|
|
|
60
65
|
export { HeadingThreeIcon } from './heading-three-icon.mjs';
|
|
61
66
|
export { HeadingTwoIcon } from './heading-two-icon.mjs';
|
|
62
67
|
export { HighlighterIcon } from './highlighter-icon.mjs';
|
|
68
|
+
export { HomeIcon } from './home-icon.mjs';
|
|
63
69
|
export { ImageIcon } from './image-icon.mjs';
|
|
64
70
|
export { IncidentIcon } from './incident.mjs';
|
|
65
71
|
export { InfoIcon } from './info.mjs';
|
|
@@ -71,11 +77,13 @@ export { LinkedInIcon } from './linkedin.mjs';
|
|
|
71
77
|
export { ListIcon } from './list-icon.mjs';
|
|
72
78
|
export { ListOrderedIcon } from './list-ordered-icon.mjs';
|
|
73
79
|
export { ListTodoIcon } from './list-todo-icon.mjs';
|
|
80
|
+
export { LockIcon } from './lock-icon.mjs';
|
|
74
81
|
export { MessageSquareIcon } from './message-square-icon.mjs';
|
|
75
82
|
export { MinusIcon } from './minus.mjs';
|
|
76
83
|
export { MoreVerticalIcon } from './more-vertical-icon.mjs';
|
|
77
84
|
export { NIS2Icon } from './nis2-icon.mjs';
|
|
78
85
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
86
|
+
export { PaletteIcon } from './palette-icon.mjs';
|
|
79
87
|
export { PanelLeftIcon } from './panel-left-icon.mjs';
|
|
80
88
|
export { PeopleIcon } from './people.mjs';
|
|
81
89
|
export { PhysicalAssetIcon } from './physical-asset.mjs';
|
|
@@ -85,6 +93,7 @@ export { ProcessCategoryIcon } from './process-category.mjs';
|
|
|
85
93
|
export { ProcessingActivityIcon } from './processing-activity.mjs';
|
|
86
94
|
export { ProgramIcon } from './program-icon.mjs';
|
|
87
95
|
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.mjs';
|
|
96
|
+
export { QuestionCircleIcon } from './question-circle-icon.mjs';
|
|
88
97
|
export { RedoIcon } from './redo-icon.mjs';
|
|
89
98
|
export { RiskIcon } from './risk.mjs';
|
|
90
99
|
export { RotateCcwIcon } from './rotate-ccw-icon.mjs';
|
|
@@ -93,6 +102,7 @@ export { SearchIcon } from './search.mjs';
|
|
|
93
102
|
export { ServiceAssetIcon } from './service-asset.mjs';
|
|
94
103
|
export { SettingsIcon } from './settings.mjs';
|
|
95
104
|
export { ShellIcon } from './shell.mjs';
|
|
105
|
+
export { ShieldCheckIcon } from './shield-check-icon.mjs';
|
|
96
106
|
export { SoftwareAssetIcon } from './software-asset.mjs';
|
|
97
107
|
export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.mjs';
|
|
98
108
|
export { StrikeIcon } from './strike-icon.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { ArrowRightIcon } from './arrow-right-icon.js';
|
|
|
12
12
|
export { ArrowUp } from './arrow-up.js';
|
|
13
13
|
export { AssetsIcon } from './assets.js';
|
|
14
14
|
export { BanIcon } from './ban-icon.js';
|
|
15
|
+
export { BellIcon } from './bell-icon.js';
|
|
15
16
|
export { BlockquoteIcon } from './blockquote-icon.js';
|
|
16
17
|
export { BoldIcon } from './bold-icon.js';
|
|
17
18
|
export { BusinessUnitIcon } from './business-unit.js';
|
|
@@ -30,9 +31,11 @@ export { CircleIcon } from './circle.js';
|
|
|
30
31
|
export { CircleDotIcon, CircleDotIcon as SubsetIcon } from './circle-dot-icon.js';
|
|
31
32
|
export { CircleFadingArrowUpIcon, CircleFadingArrowUpIcon as SupersetIcon } from './circle-fading-arrow-up-icon.js';
|
|
32
33
|
export { CloseIcon } from './close.js';
|
|
34
|
+
export { CloudIcon } from './cloud-icon.js';
|
|
33
35
|
export { CodeBlockIcon } from './code-block-icon.js';
|
|
34
36
|
export { CodeIcon } from './code-icon.js';
|
|
35
37
|
export { CodeblockIcon } from './codeblock-icon.js';
|
|
38
|
+
export { ControlImplementationIcon } from './control-implementation-icon.js';
|
|
36
39
|
export { ControlsIcon } from './controls.js';
|
|
37
40
|
export { CopyIcon } from './copy-icon.js';
|
|
38
41
|
export { CornerDownLeftIcon } from './corner-down-left-icon.js';
|
|
@@ -49,6 +52,8 @@ export { EqualsIcon } from './equals-icon.js';
|
|
|
49
52
|
export { ExternalLinkIcon } from './external-link-icon.js';
|
|
50
53
|
export { EyeIcon } from './eye.js';
|
|
51
54
|
export { EyeOffIcon } from './eye-off.js';
|
|
55
|
+
export { FileTextIcon } from './file-text-icon.js';
|
|
56
|
+
export { GearIcon } from './gear-icon.js';
|
|
52
57
|
export { GlobeIcon } from './globe-icon.js';
|
|
53
58
|
export { GripVerticalIcon } from './grip-vertical.js';
|
|
54
59
|
export { HardwareAssetIcon } from './hardware-asset.js';
|
|
@@ -60,6 +65,7 @@ export { HeadingSixIcon } from './heading-six-icon.js';
|
|
|
60
65
|
export { HeadingThreeIcon } from './heading-three-icon.js';
|
|
61
66
|
export { HeadingTwoIcon } from './heading-two-icon.js';
|
|
62
67
|
export { HighlighterIcon } from './highlighter-icon.js';
|
|
68
|
+
export { HomeIcon } from './home-icon.js';
|
|
63
69
|
export { ImageIcon } from './image-icon.js';
|
|
64
70
|
export { IncidentIcon } from './incident.js';
|
|
65
71
|
export { InfoIcon } from './info.js';
|
|
@@ -71,11 +77,13 @@ export { LinkedInIcon } from './linkedin.js';
|
|
|
71
77
|
export { ListIcon } from './list-icon.js';
|
|
72
78
|
export { ListOrderedIcon } from './list-ordered-icon.js';
|
|
73
79
|
export { ListTodoIcon } from './list-todo-icon.js';
|
|
80
|
+
export { LockIcon } from './lock-icon.js';
|
|
74
81
|
export { MessageSquareIcon } from './message-square-icon.js';
|
|
75
82
|
export { MinusIcon } from './minus.js';
|
|
76
83
|
export { MoreVerticalIcon } from './more-vertical-icon.js';
|
|
77
84
|
export { NIS2Icon } from './nis2-icon.js';
|
|
78
85
|
export { NotificationIcon } from './notification-icon.js';
|
|
86
|
+
export { PaletteIcon } from './palette-icon.js';
|
|
79
87
|
export { PanelLeftIcon } from './panel-left-icon.js';
|
|
80
88
|
export { PeopleIcon } from './people.js';
|
|
81
89
|
export { PhysicalAssetIcon } from './physical-asset.js';
|
|
@@ -85,6 +93,7 @@ export { ProcessCategoryIcon } from './process-category.js';
|
|
|
85
93
|
export { ProcessingActivityIcon } from './processing-activity.js';
|
|
86
94
|
export { ProgramIcon } from './program-icon.js';
|
|
87
95
|
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.js';
|
|
96
|
+
export { QuestionCircleIcon } from './question-circle-icon.js';
|
|
88
97
|
export { RedoIcon } from './redo-icon.js';
|
|
89
98
|
export { RiskIcon } from './risk.js';
|
|
90
99
|
export { RotateCcwIcon } from './rotate-ccw-icon.js';
|
|
@@ -93,6 +102,7 @@ export { SearchIcon } from './search.js';
|
|
|
93
102
|
export { ServiceAssetIcon } from './service-asset.js';
|
|
94
103
|
export { SettingsIcon } from './settings.js';
|
|
95
104
|
export { ShellIcon } from './shell.js';
|
|
105
|
+
export { ShieldCheckIcon } from './shield-check-icon.js';
|
|
96
106
|
export { SoftwareAssetIcon } from './software-asset.js';
|
|
97
107
|
export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.js';
|
|
98
108
|
export { StrikeIcon } from './strike-icon.js';
|