@kopexa/icons 17.7.30 → 17.8.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.
@@ -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';
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';