@kopexa/icons 17.3.7 → 17.4.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,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.mjs';
3
+ import 'react';
4
+
5
+ declare const CalendarIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { CalendarIcon };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.js';
3
+ import 'react';
4
+
5
+ declare const CalendarIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { CalendarIcon };
@@ -0,0 +1,55 @@
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/calendar-icon.tsx
22
+ var calendar_icon_exports = {};
23
+ __export(calendar_icon_exports, {
24
+ CalendarIcon: () => CalendarIcon
25
+ });
26
+ module.exports = __toCommonJS(calendar_icon_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var CalendarIcon = ({ size = 24, ...props }) => {
29
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
30
+ "svg",
31
+ {
32
+ width: size,
33
+ height: size,
34
+ viewBox: "0 0 24 24",
35
+ fill: "none",
36
+ stroke: "currentColor",
37
+ strokeWidth: "2",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round",
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ ...props,
42
+ children: [
43
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Calendar" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8 2v4" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 2v4" }),
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
47
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 10h18" })
48
+ ]
49
+ }
50
+ );
51
+ };
52
+ // Annotate the CommonJS export names for ESM import in node:
53
+ 0 && (module.exports = {
54
+ CalendarIcon
55
+ });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ CalendarIcon
4
+ } from "./chunk-JUENU2UL.mjs";
5
+ export {
6
+ CalendarIcon
7
+ };
@@ -0,0 +1,29 @@
1
+ "use client";
2
+
3
+ // src/message-square-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var MessageSquareIcon = ({ size = 24, ...props }) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ width: size,
10
+ height: size,
11
+ viewBox: "0 0 24 24",
12
+ fill: "none",
13
+ stroke: "currentColor",
14
+ strokeWidth: "2",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: "Message" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
22
+ ]
23
+ }
24
+ );
25
+ };
26
+
27
+ export {
28
+ MessageSquareIcon
29
+ };
@@ -0,0 +1,30 @@
1
+ "use client";
2
+
3
+ // src/label-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var LabelIcon = ({ size = 24, ...props }) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ width: size,
10
+ height: size,
11
+ viewBox: "0 0 24 24",
12
+ fill: "none",
13
+ stroke: "currentColor",
14
+ strokeWidth: "2",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: "Label" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
22
+ /* @__PURE__ */ jsx("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
23
+ ]
24
+ }
25
+ );
26
+ };
27
+
28
+ export {
29
+ LabelIcon
30
+ };
@@ -0,0 +1,32 @@
1
+ "use client";
2
+
3
+ // src/calendar-icon.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var CalendarIcon = ({ size = 24, ...props }) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ width: size,
10
+ height: size,
11
+ viewBox: "0 0 24 24",
12
+ fill: "none",
13
+ stroke: "currentColor",
14
+ strokeWidth: "2",
15
+ strokeLinecap: "round",
16
+ strokeLinejoin: "round",
17
+ xmlns: "http://www.w3.org/2000/svg",
18
+ ...props,
19
+ children: [
20
+ /* @__PURE__ */ jsx("title", { children: "Calendar" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M8 2v4" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M16 2v4" }),
23
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
24
+ /* @__PURE__ */ jsx("path", { d: "M3 10h18" })
25
+ ]
26
+ }
27
+ );
28
+ };
29
+
30
+ export {
31
+ CalendarIcon
32
+ };
package/dist/index.d.mts CHANGED
@@ -15,6 +15,7 @@ export { BanIcon } from './ban-icon.mjs';
15
15
  export { BlockquoteIcon } from './blockquote-icon.mjs';
16
16
  export { BoldIcon } from './bold-icon.mjs';
17
17
  export { BusinessUnitIcon } from './business-unit.mjs';
18
+ export { CalendarIcon } from './calendar-icon.mjs';
18
19
  export { CatalogIcon } from './catalog.mjs';
19
20
  export { ChartPie, ChartPie as PartialIcon } from './chart-pie.mjs';
20
21
  export { CheckIcon } from './check.mjs';
@@ -64,11 +65,13 @@ export { IncidentIcon } from './incident.mjs';
64
65
  export { InfoIcon } from './info.mjs';
65
66
  export { IssuesIcon } from './issues.mjs';
66
67
  export { ItalicIcon } from './italic-icon.mjs';
68
+ export { LabelIcon } from './label-icon.mjs';
67
69
  export { LinkIcon } from './link-icon.mjs';
68
70
  export { LinkedInIcon } from './linkedin.mjs';
69
71
  export { ListIcon } from './list-icon.mjs';
70
72
  export { ListOrderedIcon } from './list-ordered-icon.mjs';
71
73
  export { ListTodoIcon } from './list-todo-icon.mjs';
74
+ export { MessageSquareIcon } from './message-square-icon.mjs';
72
75
  export { MinusIcon } from './minus.mjs';
73
76
  export { MoreVerticalIcon } from './more-vertical-icon.mjs';
74
77
  export { NIS2Icon } from './nis2-icon.mjs';
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export { BanIcon } from './ban-icon.js';
15
15
  export { BlockquoteIcon } from './blockquote-icon.js';
16
16
  export { BoldIcon } from './bold-icon.js';
17
17
  export { BusinessUnitIcon } from './business-unit.js';
18
+ export { CalendarIcon } from './calendar-icon.js';
18
19
  export { CatalogIcon } from './catalog.js';
19
20
  export { ChartPie, ChartPie as PartialIcon } from './chart-pie.js';
20
21
  export { CheckIcon } from './check.js';
@@ -64,11 +65,13 @@ export { IncidentIcon } from './incident.js';
64
65
  export { InfoIcon } from './info.js';
65
66
  export { IssuesIcon } from './issues.js';
66
67
  export { ItalicIcon } from './italic-icon.js';
68
+ export { LabelIcon } from './label-icon.js';
67
69
  export { LinkIcon } from './link-icon.js';
68
70
  export { LinkedInIcon } from './linkedin.js';
69
71
  export { ListIcon } from './list-icon.js';
70
72
  export { ListOrderedIcon } from './list-ordered-icon.js';
71
73
  export { ListTodoIcon } from './list-todo-icon.js';
74
+ export { MessageSquareIcon } from './message-square-icon.js';
72
75
  export { MinusIcon } from './minus.js';
73
76
  export { MoreVerticalIcon } from './more-vertical-icon.js';
74
77
  export { NIS2Icon } from './nis2-icon.js';