@kopexa/icons 7.0.1 → 7.0.2
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/check.d.mts +7 -0
- package/dist/check.d.ts +7 -0
- package/dist/check.js +52 -0
- package/dist/check.mjs +7 -0
- package/dist/chevron-right.d.mts +7 -0
- package/dist/chevron-right.d.ts +7 -0
- package/dist/chevron-right.js +52 -0
- package/dist/chevron-right.mjs +7 -0
- package/dist/chunk-3VPGJKOF.mjs +31 -0
- package/dist/chunk-76O2FFGH.mjs +29 -0
- package/dist/chunk-P4SLDC2H.mjs +29 -0
- package/dist/circle.d.mts +7 -0
- package/dist/circle.d.ts +7 -0
- package/dist/circle.js +54 -0
- package/dist/circle.mjs +7 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +101 -21
- package/dist/index.mjs +12 -0
- package/package.json +2 -2
package/dist/check.d.mts
ADDED
package/dist/check.d.ts
ADDED
package/dist/check.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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/check.tsx
|
|
22
|
+
var check_exports = {};
|
|
23
|
+
__export(check_exports, {
|
|
24
|
+
CheckIcon: () => CheckIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(check_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var CheckIcon = (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: "Check Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {
|
|
51
|
+
CheckIcon
|
|
52
|
+
});
|
package/dist/check.mjs
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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/chevron-right.tsx
|
|
22
|
+
var chevron_right_exports = {};
|
|
23
|
+
__export(chevron_right_exports, {
|
|
24
|
+
ChevronRightIcon: () => ChevronRightIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(chevron_right_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var ChevronRightIcon = (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: "Chevron Right Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {
|
|
51
|
+
ChevronRightIcon
|
|
52
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/circle.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var CircleIcon = (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: "Circle Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
22
|
+
" ",
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
CircleIcon
|
|
31
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/chevron-right.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var ChevronRightIcon = (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: "Chevron Right Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
ChevronRightIcon
|
|
29
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/check.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var CheckIcon = (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: "Check Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
CheckIcon
|
|
29
|
+
};
|
package/dist/circle.d.ts
ADDED
package/dist/circle.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/circle.tsx
|
|
22
|
+
var circle_exports = {};
|
|
23
|
+
__export(circle_exports, {
|
|
24
|
+
CircleIcon: () => CircleIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(circle_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var CircleIcon = (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: "Circle Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
45
|
+
" ",
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
CircleIcon
|
|
54
|
+
});
|
package/dist/circle.mjs
ADDED
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -21,6 +21,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
// src/index.ts
|
|
22
22
|
var index_exports = {};
|
|
23
23
|
__export(index_exports, {
|
|
24
|
+
CheckIcon: () => CheckIcon,
|
|
25
|
+
ChevronRightIcon: () => ChevronRightIcon,
|
|
26
|
+
CircleIcon: () => CircleIcon,
|
|
24
27
|
CloseIcon: () => CloseIcon,
|
|
25
28
|
PlusIcon: () => PlusIcon,
|
|
26
29
|
SaveIcon: () => SaveIcon,
|
|
@@ -28,9 +31,9 @@ __export(index_exports, {
|
|
|
28
31
|
});
|
|
29
32
|
module.exports = __toCommonJS(index_exports);
|
|
30
33
|
|
|
31
|
-
// src/
|
|
34
|
+
// src/check.tsx
|
|
32
35
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
33
|
-
var
|
|
36
|
+
var CheckIcon = (props) => {
|
|
34
37
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
35
38
|
"svg",
|
|
36
39
|
{
|
|
@@ -45,17 +48,16 @@ var CloseIcon = (props) => {
|
|
|
45
48
|
strokeLinejoin: "round",
|
|
46
49
|
...props,
|
|
47
50
|
children: [
|
|
48
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "
|
|
49
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "
|
|
50
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m6 6 12 12" })
|
|
51
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Check Icon" }),
|
|
52
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
51
53
|
]
|
|
52
54
|
}
|
|
53
55
|
);
|
|
54
56
|
};
|
|
55
57
|
|
|
56
|
-
// src/
|
|
58
|
+
// src/chevron-right.tsx
|
|
57
59
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
58
|
-
var
|
|
60
|
+
var ChevronRightIcon = (props) => {
|
|
59
61
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
60
62
|
"svg",
|
|
61
63
|
{
|
|
@@ -70,17 +72,16 @@ var PlusIcon = (props) => {
|
|
|
70
72
|
strokeLinejoin: "round",
|
|
71
73
|
...props,
|
|
72
74
|
children: [
|
|
73
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "
|
|
74
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
75
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 5v14" })
|
|
75
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Chevron Right Icon" }),
|
|
76
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
76
77
|
]
|
|
77
78
|
}
|
|
78
79
|
);
|
|
79
80
|
};
|
|
80
81
|
|
|
81
|
-
// src/
|
|
82
|
+
// src/circle.tsx
|
|
82
83
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
83
|
-
var
|
|
84
|
+
var CircleIcon = (props) => {
|
|
84
85
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
85
86
|
"svg",
|
|
86
87
|
{
|
|
@@ -95,18 +96,18 @@ var SaveIcon = (props) => {
|
|
|
95
96
|
strokeLinejoin: "round",
|
|
96
97
|
...props,
|
|
97
98
|
children: [
|
|
98
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "
|
|
99
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("
|
|
100
|
-
|
|
101
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "
|
|
99
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Circle Icon" }),
|
|
100
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
101
|
+
" ",
|
|
102
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
102
103
|
]
|
|
103
104
|
}
|
|
104
105
|
);
|
|
105
106
|
};
|
|
106
107
|
|
|
107
|
-
// src/
|
|
108
|
+
// src/close.tsx
|
|
108
109
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
109
|
-
var
|
|
110
|
+
var CloseIcon = (props) => {
|
|
110
111
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
111
112
|
"svg",
|
|
112
113
|
{
|
|
@@ -121,15 +122,94 @@ var SearchIcon = (props) => {
|
|
|
121
122
|
strokeLinejoin: "round",
|
|
122
123
|
...props,
|
|
123
124
|
children: [
|
|
124
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "
|
|
125
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "
|
|
126
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("
|
|
125
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Close Icon" }),
|
|
126
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "M18 6 6 18" }),
|
|
127
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m6 6 12 12" })
|
|
128
|
+
]
|
|
129
|
+
}
|
|
130
|
+
);
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
// src/plus.tsx
|
|
134
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
135
|
+
var PlusIcon = (props) => {
|
|
136
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
137
|
+
"svg",
|
|
138
|
+
{
|
|
139
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
140
|
+
width: "24",
|
|
141
|
+
height: "24",
|
|
142
|
+
viewBox: "0 0 24 24",
|
|
143
|
+
fill: "none",
|
|
144
|
+
stroke: "currentColor",
|
|
145
|
+
strokeWidth: "2",
|
|
146
|
+
strokeLinecap: "round",
|
|
147
|
+
strokeLinejoin: "round",
|
|
148
|
+
...props,
|
|
149
|
+
children: [
|
|
150
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: "Plus Icon" }),
|
|
151
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M5 12h14" }),
|
|
152
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M12 5v14" })
|
|
153
|
+
]
|
|
154
|
+
}
|
|
155
|
+
);
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
// src/save.tsx
|
|
159
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
160
|
+
var SaveIcon = (props) => {
|
|
161
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
162
|
+
"svg",
|
|
163
|
+
{
|
|
164
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
165
|
+
width: "24",
|
|
166
|
+
height: "24",
|
|
167
|
+
viewBox: "0 0 24 24",
|
|
168
|
+
fill: "none",
|
|
169
|
+
stroke: "currentColor",
|
|
170
|
+
strokeWidth: "2",
|
|
171
|
+
strokeLinecap: "round",
|
|
172
|
+
strokeLinejoin: "round",
|
|
173
|
+
...props,
|
|
174
|
+
children: [
|
|
175
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: "Save Icon" }),
|
|
176
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.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" }),
|
|
177
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
178
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
);
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
// src/search.tsx
|
|
185
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
186
|
+
var SearchIcon = (props) => {
|
|
187
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
188
|
+
"svg",
|
|
189
|
+
{
|
|
190
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
191
|
+
width: "24",
|
|
192
|
+
height: "24",
|
|
193
|
+
viewBox: "0 0 24 24",
|
|
194
|
+
fill: "none",
|
|
195
|
+
stroke: "currentColor",
|
|
196
|
+
strokeWidth: "2",
|
|
197
|
+
strokeLinecap: "round",
|
|
198
|
+
strokeLinejoin: "round",
|
|
199
|
+
...props,
|
|
200
|
+
children: [
|
|
201
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: "Search Icon" }),
|
|
202
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
203
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
127
204
|
]
|
|
128
205
|
}
|
|
129
206
|
);
|
|
130
207
|
};
|
|
131
208
|
// Annotate the CommonJS export names for ESM import in node:
|
|
132
209
|
0 && (module.exports = {
|
|
210
|
+
CheckIcon,
|
|
211
|
+
ChevronRightIcon,
|
|
212
|
+
CircleIcon,
|
|
133
213
|
CloseIcon,
|
|
134
214
|
PlusIcon,
|
|
135
215
|
SaveIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
CheckIcon
|
|
4
|
+
} from "./chunk-P4SLDC2H.mjs";
|
|
5
|
+
import {
|
|
6
|
+
ChevronRightIcon
|
|
7
|
+
} from "./chunk-76O2FFGH.mjs";
|
|
8
|
+
import {
|
|
9
|
+
CircleIcon
|
|
10
|
+
} from "./chunk-3VPGJKOF.mjs";
|
|
2
11
|
import {
|
|
3
12
|
CloseIcon
|
|
4
13
|
} from "./chunk-4WUSAORE.mjs";
|
|
@@ -12,6 +21,9 @@ import {
|
|
|
12
21
|
SearchIcon
|
|
13
22
|
} from "./chunk-3BJDY4K2.mjs";
|
|
14
23
|
export {
|
|
24
|
+
CheckIcon,
|
|
25
|
+
ChevronRightIcon,
|
|
26
|
+
CircleIcon,
|
|
15
27
|
CloseIcon,
|
|
16
28
|
PlusIcon,
|
|
17
29
|
SaveIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
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.4.
|
|
30
|
+
"@kopexa/theme": "1.4.2"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.1",
|