@kopexa/icons 17.1.2 → 17.2.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/dist/chunk-FUOST266.mjs +30 -0
- package/dist/chunk-UFEHCDGF.mjs +34 -0
- package/dist/dora-icon.d.mts +11 -0
- package/dist/dora-icon.d.ts +11 -0
- package/dist/dora-icon.js +57 -0
- package/dist/dora-icon.mjs +7 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +421 -363
- package/dist/index.mjs +35 -27
- package/dist/nis2-icon.d.mts +11 -0
- package/dist/nis2-icon.d.ts +11 -0
- package/dist/nis2-icon.js +53 -0
- package/dist/nis2-icon.mjs +7 -0
- package/package.json +4 -4
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/nis2-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var NIS2Icon = ({ 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: "NIS2 compliance" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export {
|
|
29
|
+
NIS2Icon
|
|
30
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/dora-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var DORAIcon = ({ 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: "DORA compliance" }),
|
|
21
|
+
/* @__PURE__ */ jsx("line", { x1: "3", x2: "21", y1: "22", y2: "22" }),
|
|
22
|
+
/* @__PURE__ */ jsx("line", { x1: "6", x2: "6", y1: "18", y2: "11" }),
|
|
23
|
+
/* @__PURE__ */ jsx("line", { x1: "10", x2: "10", y1: "18", y2: "11" }),
|
|
24
|
+
/* @__PURE__ */ jsx("line", { x1: "14", x2: "14", y1: "18", y2: "11" }),
|
|
25
|
+
/* @__PURE__ */ jsx("line", { x1: "18", x2: "18", y1: "18", y2: "11" }),
|
|
26
|
+
/* @__PURE__ */ jsx("polygon", { points: "12 2 20 7 4 7" })
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export {
|
|
33
|
+
DORAIcon
|
|
34
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { IconSvgProps } from './types.mjs';
|
|
3
|
+
import 'react';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* DORA Icon - Landmark/Building representing financial institutions
|
|
7
|
+
* Used for Digital Operational Resilience Act (DORA) compliance markers
|
|
8
|
+
*/
|
|
9
|
+
declare const DORAIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { DORAIcon };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { IconSvgProps } from './types.js';
|
|
3
|
+
import 'react';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* DORA Icon - Landmark/Building representing financial institutions
|
|
7
|
+
* Used for Digital Operational Resilience Act (DORA) compliance markers
|
|
8
|
+
*/
|
|
9
|
+
declare const DORAIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
|
|
10
|
+
|
|
11
|
+
export { DORAIcon };
|
|
@@ -0,0 +1,57 @@
|
|
|
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/dora-icon.tsx
|
|
22
|
+
var dora_icon_exports = {};
|
|
23
|
+
__export(dora_icon_exports, {
|
|
24
|
+
DORAIcon: () => DORAIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(dora_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var DORAIcon = ({ 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: "DORA compliance" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "3", x2: "21", y1: "22", y2: "22" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "6", x2: "6", y1: "18", y2: "11" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "10", x2: "10", y1: "18", y2: "11" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "14", x2: "14", y1: "18", y2: "11" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "18", x2: "18", y1: "18", y2: "11" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("polygon", { points: "12 2 20 7 4 7" })
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
};
|
|
54
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
55
|
+
0 && (module.exports = {
|
|
56
|
+
DORAIcon
|
|
57
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -39,6 +39,7 @@ export { CropIcon } from './crop-icon.mjs';
|
|
|
39
39
|
export { DataAssetIcon } from './data-asset.mjs';
|
|
40
40
|
export { DocumentsIcon } from './documents.mjs';
|
|
41
41
|
export { DomainIcon } from './domain-icon.mjs';
|
|
42
|
+
export { DORAIcon } from './dora-icon.mjs';
|
|
42
43
|
export { DSARIcon } from './dsar.mjs';
|
|
43
44
|
export { EditIcon } from './edit-icon.mjs';
|
|
44
45
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
@@ -69,6 +70,7 @@ export { ListOrderedIcon } from './list-ordered-icon.mjs';
|
|
|
69
70
|
export { ListTodoIcon } from './list-todo-icon.mjs';
|
|
70
71
|
export { MinusIcon } from './minus.mjs';
|
|
71
72
|
export { MoreVerticalIcon } from './more-vertical-icon.mjs';
|
|
73
|
+
export { NIS2Icon } from './nis2-icon.mjs';
|
|
72
74
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
73
75
|
export { PanelLeftIcon } from './panel-left-icon.mjs';
|
|
74
76
|
export { PeopleIcon } from './people.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export { CropIcon } from './crop-icon.js';
|
|
|
39
39
|
export { DataAssetIcon } from './data-asset.js';
|
|
40
40
|
export { DocumentsIcon } from './documents.js';
|
|
41
41
|
export { DomainIcon } from './domain-icon.js';
|
|
42
|
+
export { DORAIcon } from './dora-icon.js';
|
|
42
43
|
export { DSARIcon } from './dsar.js';
|
|
43
44
|
export { EditIcon } from './edit-icon.js';
|
|
44
45
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
@@ -69,6 +70,7 @@ export { ListOrderedIcon } from './list-ordered-icon.js';
|
|
|
69
70
|
export { ListTodoIcon } from './list-todo-icon.js';
|
|
70
71
|
export { MinusIcon } from './minus.js';
|
|
71
72
|
export { MoreVerticalIcon } from './more-vertical-icon.js';
|
|
73
|
+
export { NIS2Icon } from './nis2-icon.js';
|
|
72
74
|
export { NotificationIcon } from './notification-icon.js';
|
|
73
75
|
export { PanelLeftIcon } from './panel-left-icon.js';
|
|
74
76
|
export { PeopleIcon } from './people.js';
|