@kopexa/icons 4.0.2 → 6.0.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,30 @@
1
+ "use client";
2
+
3
+ // src/search.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var SearchIcon = (props) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ width: "24",
11
+ height: "24",
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: "Search Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "m21 21-4.34-4.34" }),
22
+ /* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" })
23
+ ]
24
+ }
25
+ );
26
+ };
27
+
28
+ export {
29
+ SearchIcon
30
+ };
@@ -0,0 +1,31 @@
1
+ "use client";
2
+
3
+ // src/save.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var SaveIcon = (props) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ width: "24",
11
+ height: "24",
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: "Save Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
23
+ /* @__PURE__ */ jsx("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
24
+ ]
25
+ }
26
+ );
27
+ };
28
+
29
+ export {
30
+ SaveIcon
31
+ };
@@ -0,0 +1,30 @@
1
+ "use client";
2
+
3
+ // src/plus.tsx
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ var PlusIcon = (props) => {
6
+ return /* @__PURE__ */ jsxs(
7
+ "svg",
8
+ {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ width: "24",
11
+ height: "24",
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: "Plus Icon" }),
21
+ /* @__PURE__ */ jsx("path", { d: "M5 12h14" }),
22
+ /* @__PURE__ */ jsx("path", { d: "M12 5v14" })
23
+ ]
24
+ }
25
+ );
26
+ };
27
+
28
+ export {
29
+ PlusIcon
30
+ };
package/dist/index.d.mts CHANGED
@@ -1,4 +1,7 @@
1
1
  export { CloseIcon } from './close.mjs';
2
+ export { PlusIcon } from './plus.mjs';
3
+ export { SaveIcon } from './save.mjs';
4
+ export { SearchIcon } from './search.mjs';
2
5
  export { IconSvgProps } from './types.mjs';
3
6
  import 'react/jsx-runtime';
4
7
  import 'react';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  export { CloseIcon } from './close.js';
2
+ export { PlusIcon } from './plus.js';
3
+ export { SaveIcon } from './save.js';
4
+ export { SearchIcon } from './search.js';
2
5
  export { IconSvgProps } from './types.js';
3
6
  import 'react/jsx-runtime';
4
7
  import 'react';
package/dist/index.js CHANGED
@@ -21,7 +21,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
21
21
  // src/index.ts
22
22
  var index_exports = {};
23
23
  __export(index_exports, {
24
- CloseIcon: () => CloseIcon
24
+ CloseIcon: () => CloseIcon,
25
+ PlusIcon: () => PlusIcon,
26
+ SaveIcon: () => SaveIcon,
27
+ SearchIcon: () => SearchIcon
25
28
  });
26
29
  module.exports = __toCommonJS(index_exports);
27
30
 
@@ -49,7 +52,86 @@ var CloseIcon = (props) => {
49
52
  }
50
53
  );
51
54
  };
55
+
56
+ // src/plus.tsx
57
+ var import_jsx_runtime2 = require("react/jsx-runtime");
58
+ var PlusIcon = (props) => {
59
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
60
+ "svg",
61
+ {
62
+ xmlns: "http://www.w3.org/2000/svg",
63
+ width: "24",
64
+ height: "24",
65
+ viewBox: "0 0 24 24",
66
+ fill: "none",
67
+ stroke: "currentColor",
68
+ strokeWidth: "2",
69
+ strokeLinecap: "round",
70
+ strokeLinejoin: "round",
71
+ ...props,
72
+ children: [
73
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Plus Icon" }),
74
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5 12h14" }),
75
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 5v14" })
76
+ ]
77
+ }
78
+ );
79
+ };
80
+
81
+ // src/save.tsx
82
+ var import_jsx_runtime3 = require("react/jsx-runtime");
83
+ var SaveIcon = (props) => {
84
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
85
+ "svg",
86
+ {
87
+ xmlns: "http://www.w3.org/2000/svg",
88
+ width: "24",
89
+ height: "24",
90
+ viewBox: "0 0 24 24",
91
+ fill: "none",
92
+ stroke: "currentColor",
93
+ strokeWidth: "2",
94
+ strokeLinecap: "round",
95
+ strokeLinejoin: "round",
96
+ ...props,
97
+ children: [
98
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Save Icon" }),
99
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
100
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
101
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
102
+ ]
103
+ }
104
+ );
105
+ };
106
+
107
+ // src/search.tsx
108
+ var import_jsx_runtime4 = require("react/jsx-runtime");
109
+ var SearchIcon = (props) => {
110
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
111
+ "svg",
112
+ {
113
+ xmlns: "http://www.w3.org/2000/svg",
114
+ width: "24",
115
+ height: "24",
116
+ viewBox: "0 0 24 24",
117
+ fill: "none",
118
+ stroke: "currentColor",
119
+ strokeWidth: "2",
120
+ strokeLinecap: "round",
121
+ strokeLinejoin: "round",
122
+ ...props,
123
+ children: [
124
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Search Icon" }),
125
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m21 21-4.34-4.34" }),
126
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("circle", { cx: "11", cy: "11", r: "8" })
127
+ ]
128
+ }
129
+ );
130
+ };
52
131
  // Annotate the CommonJS export names for ESM import in node:
53
132
  0 && (module.exports = {
54
- CloseIcon
133
+ CloseIcon,
134
+ PlusIcon,
135
+ SaveIcon,
136
+ SearchIcon
55
137
  });
package/dist/index.mjs CHANGED
@@ -2,6 +2,18 @@
2
2
  import {
3
3
  CloseIcon
4
4
  } from "./chunk-4WUSAORE.mjs";
5
+ import {
6
+ PlusIcon
7
+ } from "./chunk-VT4DJPGF.mjs";
8
+ import {
9
+ SaveIcon
10
+ } from "./chunk-KE6JB3MS.mjs";
11
+ import {
12
+ SearchIcon
13
+ } from "./chunk-3BJDY4K2.mjs";
5
14
  export {
6
- CloseIcon
15
+ CloseIcon,
16
+ PlusIcon,
17
+ SaveIcon,
18
+ SearchIcon
7
19
  };
@@ -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 PlusIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { PlusIcon };
package/dist/plus.d.ts ADDED
@@ -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 PlusIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { PlusIcon };
package/dist/plus.js ADDED
@@ -0,0 +1,53 @@
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/plus.tsx
22
+ var plus_exports = {};
23
+ __export(plus_exports, {
24
+ PlusIcon: () => PlusIcon
25
+ });
26
+ module.exports = __toCommonJS(plus_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var PlusIcon = (props) => {
29
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
30
+ "svg",
31
+ {
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: "24",
34
+ height: "24",
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: "Plus Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 12h14" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 5v14" })
46
+ ]
47
+ }
48
+ );
49
+ };
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ PlusIcon
53
+ });
package/dist/plus.mjs ADDED
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ PlusIcon
4
+ } from "./chunk-VT4DJPGF.mjs";
5
+ export {
6
+ PlusIcon
7
+ };
@@ -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 SaveIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { SaveIcon };
package/dist/save.d.ts ADDED
@@ -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 SaveIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { SaveIcon };
package/dist/save.js ADDED
@@ -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/save.tsx
22
+ var save_exports = {};
23
+ __export(save_exports, {
24
+ SaveIcon: () => SaveIcon
25
+ });
26
+ module.exports = __toCommonJS(save_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var SaveIcon = (props) => {
29
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
30
+ "svg",
31
+ {
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: "24",
34
+ height: "24",
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: "Save Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
47
+ ]
48
+ }
49
+ );
50
+ };
51
+ // Annotate the CommonJS export names for ESM import in node:
52
+ 0 && (module.exports = {
53
+ SaveIcon
54
+ });
package/dist/save.mjs ADDED
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ SaveIcon
4
+ } from "./chunk-KE6JB3MS.mjs";
5
+ export {
6
+ SaveIcon
7
+ };
@@ -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 SearchIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { SearchIcon };
@@ -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 SearchIcon: (props: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { SearchIcon };
package/dist/search.js ADDED
@@ -0,0 +1,53 @@
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/search.tsx
22
+ var search_exports = {};
23
+ __export(search_exports, {
24
+ SearchIcon: () => SearchIcon
25
+ });
26
+ module.exports = __toCommonJS(search_exports);
27
+ var import_jsx_runtime = require("react/jsx-runtime");
28
+ var SearchIcon = (props) => {
29
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
30
+ "svg",
31
+ {
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ width: "24",
34
+ height: "24",
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: "Search Icon" }),
44
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m21 21-4.34-4.34" }),
45
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "11", cy: "11", r: "8" })
46
+ ]
47
+ }
48
+ );
49
+ };
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ SearchIcon
53
+ });
@@ -0,0 +1,7 @@
1
+ "use client";
2
+ import {
3
+ SearchIcon
4
+ } from "./chunk-3BJDY4K2.mjs";
5
+ export {
6
+ SearchIcon
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/icons",
3
- "version": "4.0.2",
3
+ "version": "6.0.0",
4
4
  "description": "icons we use in our kopexa products",
5
5
  "keywords": [
6
6
  "icons"
@@ -27,11 +27,11 @@
27
27
  "peerDependencies": {
28
28
  "react": ">=19.0.0-rc.0",
29
29
  "react-dom": ">=19.0.0-rc.0",
30
- "@kopexa/theme": "1.1.0"
30
+ "@kopexa/theme": "1.3.0"
31
31
  },
32
32
  "dependencies": {
33
- "@kopexa/shared-utils": "1.1.0",
34
- "@kopexa/react-utils": "2.0.0"
33
+ "@kopexa/shared-utils": "1.1.1",
34
+ "@kopexa/react-utils": "2.0.1"
35
35
  },
36
36
  "clean-package": "../../../clean-package.config.json",
37
37
  "module": "dist/index.mjs",