@kopexa/icons 9.0.0 → 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-36PEVCQL.mjs +31 -0
- package/dist/chunk-GPAMXO65.mjs +35 -0
- package/dist/chunk-V6QXOK5V.mjs +32 -0
- package/dist/chunk-WWSIRUDQ.mjs +32 -0
- package/dist/data-asset.d.mts +7 -0
- package/dist/data-asset.d.ts +7 -0
- package/dist/data-asset.js +54 -0
- package/dist/data-asset.mjs +7 -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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +246 -128
- package/dist/index.mjs +38 -22
- package/dist/physical-asset.d.mts +7 -0
- package/dist/physical-asset.d.ts +7 -0
- package/dist/physical-asset.js +55 -0
- package/dist/physical-asset.mjs +7 -0
- package/dist/plattform-asset.d.mts +7 -0
- package/dist/plattform-asset.d.ts +7 -0
- package/dist/plattform-asset.js +55 -0
- package/dist/plattform-asset.mjs +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/data-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var DataAssetIcon = ({ 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: "Plattform Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
DataAssetIcon
|
|
31
|
+
};
|
|
@@ -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,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 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M10 19v-3.96 3.15" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M7 19h5" }),
|
|
24
|
+
/* @__PURE__ */ jsx("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
PhysicalAssetIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/plattform-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var PlattformAssetIcon = ({ 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: "Plattform Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
22
|
+
/* @__PURE__ */ jsx("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
23
|
+
/* @__PURE__ */ jsx("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
24
|
+
/* @__PURE__ */ jsx("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
PlattformAssetIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
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/data-asset.tsx
|
|
22
|
+
var data_asset_exports = {};
|
|
23
|
+
__export(data_asset_exports, {
|
|
24
|
+
DataAssetIcon: () => DataAssetIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(data_asset_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var DataAssetIcon = ({ 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: "Plattform Asset icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("ellipse", { cx: "12", cy: "5", rx: "9", ry: "3" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 5V19A9 3 0 0 0 21 19V5" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 12A9 3 0 0 0 21 12" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
DataAssetIcon
|
|
54
|
+
});
|
|
@@ -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
|
@@ -12,11 +12,13 @@ export { ChevronUpDown } from './chevron-up-down.mjs';
|
|
|
12
12
|
export { CircleIcon } from './circle.mjs';
|
|
13
13
|
export { CloseIcon } from './close.mjs';
|
|
14
14
|
export { ControlsIcon } from './controls.mjs';
|
|
15
|
+
export { DataAssetIcon } from './data-asset.mjs';
|
|
15
16
|
export { DocumentsIcon } from './documents.mjs';
|
|
16
17
|
export { DSARIcon } from './dsar.mjs';
|
|
17
18
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
18
19
|
export { EyeIcon } from './eye.mjs';
|
|
19
20
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.mjs';
|
|
20
22
|
export { IncidentIcon } from './incident.mjs';
|
|
21
23
|
export { IssuesIcon } from './issues.mjs';
|
|
22
24
|
export { LinkedInIcon } from './linkedin.mjs';
|
|
@@ -24,6 +26,8 @@ export { MinusIcon } from './minus.mjs';
|
|
|
24
26
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
25
27
|
export { PanelLeftIcon } from './panel-left-icon.mjs';
|
|
26
28
|
export { PeopleIcon } from './people.mjs';
|
|
29
|
+
export { PhysicalAssetIcon } from './physical-asset.mjs';
|
|
30
|
+
export { PlattformAssetIcon } from './plattform-asset.mjs';
|
|
27
31
|
export { PlusIcon } from './plus.mjs';
|
|
28
32
|
export { ProcessingActivityIcon } from './processing-activity.mjs';
|
|
29
33
|
export { ProgramIcon } from './program-icon.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -12,11 +12,13 @@ export { ChevronUpDown } from './chevron-up-down.js';
|
|
|
12
12
|
export { CircleIcon } from './circle.js';
|
|
13
13
|
export { CloseIcon } from './close.js';
|
|
14
14
|
export { ControlsIcon } from './controls.js';
|
|
15
|
+
export { DataAssetIcon } from './data-asset.js';
|
|
15
16
|
export { DocumentsIcon } from './documents.js';
|
|
16
17
|
export { DSARIcon } from './dsar.js';
|
|
17
18
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
18
19
|
export { EyeIcon } from './eye.js';
|
|
19
20
|
export { EyeOffIcon } from './eye-off.js';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.js';
|
|
20
22
|
export { IncidentIcon } from './incident.js';
|
|
21
23
|
export { IssuesIcon } from './issues.js';
|
|
22
24
|
export { LinkedInIcon } from './linkedin.js';
|
|
@@ -24,6 +26,8 @@ export { MinusIcon } from './minus.js';
|
|
|
24
26
|
export { NotificationIcon } from './notification-icon.js';
|
|
25
27
|
export { PanelLeftIcon } from './panel-left-icon.js';
|
|
26
28
|
export { PeopleIcon } from './people.js';
|
|
29
|
+
export { PhysicalAssetIcon } from './physical-asset.js';
|
|
30
|
+
export { PlattformAssetIcon } from './plattform-asset.js';
|
|
27
31
|
export { PlusIcon } from './plus.js';
|
|
28
32
|
export { ProcessingActivityIcon } from './processing-activity.js';
|
|
29
33
|
export { ProgramIcon } from './program-icon.js';
|