@kopexa/icons 17.7.30 → 17.9.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-J5Z363UY.mjs +32 -0
- package/dist/chunk-VV5L57AD.mjs +34 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +387 -327
- package/dist/index.mjs +33 -25
- package/dist/information-asset.d.mts +7 -0
- package/dist/information-asset.d.ts +7 -0
- package/dist/information-asset.js +57 -0
- package/dist/information-asset.mjs +7 -0
- package/dist/retention-policy-icon.d.mts +7 -0
- package/dist/retention-policy-icon.d.ts +7 -0
- package/dist/retention-policy-icon.js +55 -0
- package/dist/retention-policy-icon.mjs +7 -0
- package/package.json +4 -4
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/retention-policy-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var RetentionPolicyIcon = ({ 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: "Retention policy icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M4 7V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3" }),
|
|
22
|
+
/* @__PURE__ */ jsx("polyline", { points: "14 2 14 8 20 8" }),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", { cx: "6", cy: "14", r: "4" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M6 12v2l1 1" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
RetentionPolicyIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/information-asset.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var InformationAssetIcon = ({ 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: "Information Asset icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", { cx: "10", cy: "13", r: "2" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M14 13h2" }),
|
|
25
|
+
/* @__PURE__ */ jsx("path", { d: "M10 17v-2" }),
|
|
26
|
+
/* @__PURE__ */ jsx("path", { d: "M14 17h2" })
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export {
|
|
33
|
+
InformationAssetIcon
|
|
34
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -81,6 +81,7 @@ export { HomeIcon } from './home-icon.mjs';
|
|
|
81
81
|
export { ImageIcon } from './image-icon.mjs';
|
|
82
82
|
export { IncidentIcon } from './incident.mjs';
|
|
83
83
|
export { InfoIcon } from './info.mjs';
|
|
84
|
+
export { InformationAssetIcon } from './information-asset.mjs';
|
|
84
85
|
export { IssuesIcon } from './issues.mjs';
|
|
85
86
|
export { ItalicIcon } from './italic-icon.mjs';
|
|
86
87
|
export { LabelIcon } from './label-icon.mjs';
|
|
@@ -107,6 +108,7 @@ export { ProgramIcon } from './program-icon.mjs';
|
|
|
107
108
|
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.mjs';
|
|
108
109
|
export { QuestionCircleIcon } from './question-circle-icon.mjs';
|
|
109
110
|
export { RedoIcon } from './redo-icon.mjs';
|
|
111
|
+
export { RetentionPolicyIcon } from './retention-policy-icon.mjs';
|
|
110
112
|
export { RiskIcon } from './risk.mjs';
|
|
111
113
|
export { RotateCcwIcon } from './rotate-ccw-icon.mjs';
|
|
112
114
|
export { SaveIcon } from './save.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export { HomeIcon } from './home-icon.js';
|
|
|
81
81
|
export { ImageIcon } from './image-icon.js';
|
|
82
82
|
export { IncidentIcon } from './incident.js';
|
|
83
83
|
export { InfoIcon } from './info.js';
|
|
84
|
+
export { InformationAssetIcon } from './information-asset.js';
|
|
84
85
|
export { IssuesIcon } from './issues.js';
|
|
85
86
|
export { ItalicIcon } from './italic-icon.js';
|
|
86
87
|
export { LabelIcon } from './label-icon.js';
|
|
@@ -107,6 +108,7 @@ export { ProgramIcon } from './program-icon.js';
|
|
|
107
108
|
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.js';
|
|
108
109
|
export { QuestionCircleIcon } from './question-circle-icon.js';
|
|
109
110
|
export { RedoIcon } from './redo-icon.js';
|
|
111
|
+
export { RetentionPolicyIcon } from './retention-policy-icon.js';
|
|
110
112
|
export { RiskIcon } from './risk.js';
|
|
111
113
|
export { RotateCcwIcon } from './rotate-ccw-icon.js';
|
|
112
114
|
export { SaveIcon } from './save.js';
|