@kopexa/icons 4.0.2 → 5.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
+ };
package/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { CloseIcon } from './close.mjs';
2
+ export { SearchIcon } from './search.mjs';
2
3
  export { IconSvgProps } from './types.mjs';
3
4
  import 'react/jsx-runtime';
4
5
  import 'react';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { CloseIcon } from './close.js';
2
+ export { SearchIcon } from './search.js';
2
3
  export { IconSvgProps } from './types.js';
3
4
  import 'react/jsx-runtime';
4
5
  import 'react';
package/dist/index.js CHANGED
@@ -21,7 +21,8 @@ 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
+ SearchIcon: () => SearchIcon
25
26
  });
26
27
  module.exports = __toCommonJS(index_exports);
27
28
 
@@ -49,7 +50,33 @@ var CloseIcon = (props) => {
49
50
  }
50
51
  );
51
52
  };
53
+
54
+ // src/search.tsx
55
+ var import_jsx_runtime2 = require("react/jsx-runtime");
56
+ var SearchIcon = (props) => {
57
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
58
+ "svg",
59
+ {
60
+ xmlns: "http://www.w3.org/2000/svg",
61
+ width: "24",
62
+ height: "24",
63
+ viewBox: "0 0 24 24",
64
+ fill: "none",
65
+ stroke: "currentColor",
66
+ strokeWidth: "2",
67
+ strokeLinecap: "round",
68
+ strokeLinejoin: "round",
69
+ ...props,
70
+ children: [
71
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Search Icon" }),
72
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m21 21-4.34-4.34" }),
73
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "11", cy: "11", r: "8" })
74
+ ]
75
+ }
76
+ );
77
+ };
52
78
  // Annotate the CommonJS export names for ESM import in node:
53
79
  0 && (module.exports = {
54
- CloseIcon
80
+ CloseIcon,
81
+ SearchIcon
55
82
  });
package/dist/index.mjs CHANGED
@@ -2,6 +2,10 @@
2
2
  import {
3
3
  CloseIcon
4
4
  } from "./chunk-4WUSAORE.mjs";
5
+ import {
6
+ SearchIcon
7
+ } from "./chunk-3BJDY4K2.mjs";
5
8
  export {
6
- CloseIcon
9
+ CloseIcon,
10
+ SearchIcon
7
11
  };
@@ -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": "5.0.0",
4
4
  "description": "icons we use in our kopexa products",
5
5
  "keywords": [
6
6
  "icons"
@@ -27,7 +27,7 @@
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.2.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "@kopexa/shared-utils": "1.1.0",