@kopexa/icons 7.0.2 → 7.0.3
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/chevron-down.d.mts +7 -0
- package/dist/chevron-down.d.ts +7 -0
- package/dist/chevron-down.js +52 -0
- package/dist/chevron-down.mjs +7 -0
- package/dist/chevron-left.d.mts +7 -0
- package/dist/chevron-left.d.ts +7 -0
- package/dist/chevron-left.js +52 -0
- package/dist/chevron-left.mjs +7 -0
- package/dist/chunk-EZB7Q4G2.mjs +32 -0
- package/dist/chunk-HSVRK2JV.mjs +29 -0
- package/dist/chunk-K6ICW5LE.mjs +30 -0
- package/dist/chunk-NKQY55QT.mjs +29 -0
- package/dist/eye-off.d.mts +7 -0
- package/dist/eye-off.d.ts +7 -0
- package/dist/eye-off.js +55 -0
- package/dist/eye-off.mjs +7 -0
- package/dist/eye.d.mts +7 -0
- package/dist/eye.d.ts +7 -0
- package/dist/eye.js +53 -0
- package/dist/eye.mjs +7 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +138 -30
- package/dist/index.mjs +23 -7
- package/package.json +4 -4
|
@@ -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-down.tsx
|
|
22
|
+
var chevron_down_exports = {};
|
|
23
|
+
__export(chevron_down_exports, {
|
|
24
|
+
ChevronDownIcon: () => ChevronDownIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(chevron_down_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var ChevronDownIcon = (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 Down Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {
|
|
51
|
+
ChevronDownIcon
|
|
52
|
+
});
|
|
@@ -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-left.tsx
|
|
22
|
+
var chevron_left_exports = {};
|
|
23
|
+
__export(chevron_left_exports, {
|
|
24
|
+
ChevronLeftIcon: () => ChevronLeftIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(chevron_left_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var ChevronLeftIcon = (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 Left Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m15 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
|
+
ChevronLeftIcon
|
|
52
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/eye-off.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var EyeOffIcon = (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: "Eye Off Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "m2 2 20 20" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
EyeOffIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/chevron-down.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var ChevronDownIcon = (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 Down Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
ChevronDownIcon
|
|
29
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/eye.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var EyeIcon = (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: "Eye Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
22
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export {
|
|
29
|
+
EyeIcon
|
|
30
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/chevron-left.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var ChevronLeftIcon = (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 Left Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "m15 18-6-6 6-6" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
ChevronLeftIcon
|
|
29
|
+
};
|
package/dist/eye-off.js
ADDED
|
@@ -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/eye-off.tsx
|
|
22
|
+
var eye_off_exports = {};
|
|
23
|
+
__export(eye_off_exports, {
|
|
24
|
+
EyeOffIcon: () => EyeOffIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(eye_off_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var EyeOffIcon = (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: "Eye Off Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m2 2 20 20" })
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
EyeOffIcon
|
|
55
|
+
});
|
package/dist/eye-off.mjs
ADDED
package/dist/eye.d.mts
ADDED
package/dist/eye.d.ts
ADDED
package/dist/eye.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/eye.tsx
|
|
22
|
+
var eye_exports = {};
|
|
23
|
+
__export(eye_exports, {
|
|
24
|
+
EyeIcon: () => EyeIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(eye_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var EyeIcon = (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: "Eye Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
EyeIcon
|
|
53
|
+
});
|
package/dist/eye.mjs
ADDED
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export { CheckIcon } from './check.mjs';
|
|
2
|
+
export { ChevronDownIcon } from './chevron-down.mjs';
|
|
3
|
+
export { ChevronLeftIcon } from './chevron-left.mjs';
|
|
2
4
|
export { ChevronRightIcon } from './chevron-right.mjs';
|
|
3
5
|
export { CircleIcon } from './circle.mjs';
|
|
4
6
|
export { CloseIcon } from './close.mjs';
|
|
7
|
+
export { EyeIcon } from './eye.mjs';
|
|
8
|
+
export { EyeOffIcon } from './eye-off.mjs';
|
|
5
9
|
export { PlusIcon } from './plus.mjs';
|
|
6
10
|
export { SaveIcon } from './save.mjs';
|
|
7
11
|
export { SearchIcon } from './search.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export { CheckIcon } from './check.js';
|
|
2
|
+
export { ChevronDownIcon } from './chevron-down.js';
|
|
3
|
+
export { ChevronLeftIcon } from './chevron-left.js';
|
|
2
4
|
export { ChevronRightIcon } from './chevron-right.js';
|
|
3
5
|
export { CircleIcon } from './circle.js';
|
|
4
6
|
export { CloseIcon } from './close.js';
|
|
7
|
+
export { EyeIcon } from './eye.js';
|
|
8
|
+
export { EyeOffIcon } from './eye-off.js';
|
|
5
9
|
export { PlusIcon } from './plus.js';
|
|
6
10
|
export { SaveIcon } from './save.js';
|
|
7
11
|
export { SearchIcon } from './search.js';
|
package/dist/index.js
CHANGED
|
@@ -22,9 +22,13 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var index_exports = {};
|
|
23
23
|
__export(index_exports, {
|
|
24
24
|
CheckIcon: () => CheckIcon,
|
|
25
|
+
ChevronDownIcon: () => ChevronDownIcon,
|
|
26
|
+
ChevronLeftIcon: () => ChevronLeftIcon,
|
|
25
27
|
ChevronRightIcon: () => ChevronRightIcon,
|
|
26
28
|
CircleIcon: () => CircleIcon,
|
|
27
29
|
CloseIcon: () => CloseIcon,
|
|
30
|
+
EyeIcon: () => EyeIcon,
|
|
31
|
+
EyeOffIcon: () => EyeOffIcon,
|
|
28
32
|
PlusIcon: () => PlusIcon,
|
|
29
33
|
SaveIcon: () => SaveIcon,
|
|
30
34
|
SearchIcon: () => SearchIcon
|
|
@@ -55,9 +59,9 @@ var CheckIcon = (props) => {
|
|
|
55
59
|
);
|
|
56
60
|
};
|
|
57
61
|
|
|
58
|
-
// src/chevron-
|
|
62
|
+
// src/chevron-down.tsx
|
|
59
63
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
60
|
-
var
|
|
64
|
+
var ChevronDownIcon = (props) => {
|
|
61
65
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
62
66
|
"svg",
|
|
63
67
|
{
|
|
@@ -72,16 +76,16 @@ var ChevronRightIcon = (props) => {
|
|
|
72
76
|
strokeLinejoin: "round",
|
|
73
77
|
...props,
|
|
74
78
|
children: [
|
|
75
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Chevron
|
|
76
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "
|
|
79
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Chevron Down Icon" }),
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
77
81
|
]
|
|
78
82
|
}
|
|
79
83
|
);
|
|
80
84
|
};
|
|
81
85
|
|
|
82
|
-
// src/
|
|
86
|
+
// src/chevron-left.tsx
|
|
83
87
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
84
|
-
var
|
|
88
|
+
var ChevronLeftIcon = (props) => {
|
|
85
89
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
86
90
|
"svg",
|
|
87
91
|
{
|
|
@@ -96,19 +100,92 @@ var CircleIcon = (props) => {
|
|
|
96
100
|
strokeLinejoin: "round",
|
|
97
101
|
...props,
|
|
98
102
|
children: [
|
|
99
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "
|
|
100
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("
|
|
103
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Chevron Left Icon" }),
|
|
104
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
);
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
// src/chevron-right.tsx
|
|
111
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
112
|
+
var ChevronRightIcon = (props) => {
|
|
113
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
114
|
+
"svg",
|
|
115
|
+
{
|
|
116
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
117
|
+
width: "24",
|
|
118
|
+
height: "24",
|
|
119
|
+
viewBox: "0 0 24 24",
|
|
120
|
+
fill: "none",
|
|
121
|
+
stroke: "currentColor",
|
|
122
|
+
strokeWidth: "2",
|
|
123
|
+
strokeLinecap: "round",
|
|
124
|
+
strokeLinejoin: "round",
|
|
125
|
+
...props,
|
|
126
|
+
children: [
|
|
127
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Chevron Right Icon" }),
|
|
128
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
);
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
// src/circle.tsx
|
|
135
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
136
|
+
var CircleIcon = (props) => {
|
|
137
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
138
|
+
"svg",
|
|
139
|
+
{
|
|
140
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
141
|
+
width: "24",
|
|
142
|
+
height: "24",
|
|
143
|
+
viewBox: "0 0 24 24",
|
|
144
|
+
fill: "none",
|
|
145
|
+
stroke: "currentColor",
|
|
146
|
+
strokeWidth: "2",
|
|
147
|
+
strokeLinecap: "round",
|
|
148
|
+
strokeLinejoin: "round",
|
|
149
|
+
...props,
|
|
150
|
+
children: [
|
|
151
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: "Circle Icon" }),
|
|
152
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
101
153
|
" ",
|
|
102
|
-
/* @__PURE__ */ (0,
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
103
155
|
]
|
|
104
156
|
}
|
|
105
157
|
);
|
|
106
158
|
};
|
|
107
159
|
|
|
108
160
|
// src/close.tsx
|
|
109
|
-
var
|
|
161
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
110
162
|
var CloseIcon = (props) => {
|
|
111
|
-
return /* @__PURE__ */ (0,
|
|
163
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
164
|
+
"svg",
|
|
165
|
+
{
|
|
166
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
167
|
+
width: "24",
|
|
168
|
+
height: "24",
|
|
169
|
+
viewBox: "0 0 24 24",
|
|
170
|
+
fill: "none",
|
|
171
|
+
stroke: "currentColor",
|
|
172
|
+
strokeWidth: "2",
|
|
173
|
+
strokeLinecap: "round",
|
|
174
|
+
strokeLinejoin: "round",
|
|
175
|
+
...props,
|
|
176
|
+
children: [
|
|
177
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: "Close Icon" }),
|
|
178
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M18 6 6 18" }),
|
|
179
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m6 6 12 12" })
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
);
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
// src/eye.tsx
|
|
186
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
187
|
+
var EyeIcon = (props) => {
|
|
188
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
112
189
|
"svg",
|
|
113
190
|
{
|
|
114
191
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -122,18 +199,45 @@ var CloseIcon = (props) => {
|
|
|
122
199
|
strokeLinejoin: "round",
|
|
123
200
|
...props,
|
|
124
201
|
children: [
|
|
125
|
-
/* @__PURE__ */ (0,
|
|
126
|
-
/* @__PURE__ */ (0,
|
|
127
|
-
/* @__PURE__ */ (0,
|
|
202
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: "Eye Icon" }),
|
|
203
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
204
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
205
|
+
]
|
|
206
|
+
}
|
|
207
|
+
);
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
// src/eye-off.tsx
|
|
211
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
212
|
+
var EyeOffIcon = (props) => {
|
|
213
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
214
|
+
"svg",
|
|
215
|
+
{
|
|
216
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
217
|
+
width: "24",
|
|
218
|
+
height: "24",
|
|
219
|
+
viewBox: "0 0 24 24",
|
|
220
|
+
fill: "none",
|
|
221
|
+
stroke: "currentColor",
|
|
222
|
+
strokeWidth: "2",
|
|
223
|
+
strokeLinecap: "round",
|
|
224
|
+
strokeLinejoin: "round",
|
|
225
|
+
...props,
|
|
226
|
+
children: [
|
|
227
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: "Eye Off Icon" }),
|
|
228
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
229
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
230
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
231
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "m2 2 20 20" })
|
|
128
232
|
]
|
|
129
233
|
}
|
|
130
234
|
);
|
|
131
235
|
};
|
|
132
236
|
|
|
133
237
|
// src/plus.tsx
|
|
134
|
-
var
|
|
238
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
135
239
|
var PlusIcon = (props) => {
|
|
136
|
-
return /* @__PURE__ */ (0,
|
|
240
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
137
241
|
"svg",
|
|
138
242
|
{
|
|
139
243
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -147,18 +251,18 @@ var PlusIcon = (props) => {
|
|
|
147
251
|
strokeLinejoin: "round",
|
|
148
252
|
...props,
|
|
149
253
|
children: [
|
|
150
|
-
/* @__PURE__ */ (0,
|
|
151
|
-
/* @__PURE__ */ (0,
|
|
152
|
-
/* @__PURE__ */ (0,
|
|
254
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "Plus Icon" }),
|
|
255
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5 12h14" }),
|
|
256
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M12 5v14" })
|
|
153
257
|
]
|
|
154
258
|
}
|
|
155
259
|
);
|
|
156
260
|
};
|
|
157
261
|
|
|
158
262
|
// src/save.tsx
|
|
159
|
-
var
|
|
263
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
160
264
|
var SaveIcon = (props) => {
|
|
161
|
-
return /* @__PURE__ */ (0,
|
|
265
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
162
266
|
"svg",
|
|
163
267
|
{
|
|
164
268
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -172,19 +276,19 @@ var SaveIcon = (props) => {
|
|
|
172
276
|
strokeLinejoin: "round",
|
|
173
277
|
...props,
|
|
174
278
|
children: [
|
|
175
|
-
/* @__PURE__ */ (0,
|
|
176
|
-
/* @__PURE__ */ (0,
|
|
177
|
-
/* @__PURE__ */ (0,
|
|
178
|
-
/* @__PURE__ */ (0,
|
|
279
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "Save Icon" }),
|
|
280
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.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" }),
|
|
281
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
282
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
179
283
|
]
|
|
180
284
|
}
|
|
181
285
|
);
|
|
182
286
|
};
|
|
183
287
|
|
|
184
288
|
// src/search.tsx
|
|
185
|
-
var
|
|
289
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
186
290
|
var SearchIcon = (props) => {
|
|
187
|
-
return /* @__PURE__ */ (0,
|
|
291
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
188
292
|
"svg",
|
|
189
293
|
{
|
|
190
294
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -198,9 +302,9 @@ var SearchIcon = (props) => {
|
|
|
198
302
|
strokeLinejoin: "round",
|
|
199
303
|
...props,
|
|
200
304
|
children: [
|
|
201
|
-
/* @__PURE__ */ (0,
|
|
202
|
-
/* @__PURE__ */ (0,
|
|
203
|
-
/* @__PURE__ */ (0,
|
|
305
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "Search Icon" }),
|
|
306
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
307
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
204
308
|
]
|
|
205
309
|
}
|
|
206
310
|
);
|
|
@@ -208,9 +312,13 @@ var SearchIcon = (props) => {
|
|
|
208
312
|
// Annotate the CommonJS export names for ESM import in node:
|
|
209
313
|
0 && (module.exports = {
|
|
210
314
|
CheckIcon,
|
|
315
|
+
ChevronDownIcon,
|
|
316
|
+
ChevronLeftIcon,
|
|
211
317
|
ChevronRightIcon,
|
|
212
318
|
CircleIcon,
|
|
213
319
|
CloseIcon,
|
|
320
|
+
EyeIcon,
|
|
321
|
+
EyeOffIcon,
|
|
214
322
|
PlusIcon,
|
|
215
323
|
SaveIcon,
|
|
216
324
|
SearchIcon
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
PlusIcon
|
|
4
|
+
} from "./chunk-VT4DJPGF.mjs";
|
|
5
|
+
import {
|
|
6
|
+
SaveIcon
|
|
7
|
+
} from "./chunk-KE6JB3MS.mjs";
|
|
8
|
+
import {
|
|
9
|
+
SearchIcon
|
|
10
|
+
} from "./chunk-3BJDY4K2.mjs";
|
|
2
11
|
import {
|
|
3
12
|
CheckIcon
|
|
4
13
|
} from "./chunk-P4SLDC2H.mjs";
|
|
14
|
+
import {
|
|
15
|
+
ChevronDownIcon
|
|
16
|
+
} from "./chunk-HSVRK2JV.mjs";
|
|
17
|
+
import {
|
|
18
|
+
ChevronLeftIcon
|
|
19
|
+
} from "./chunk-NKQY55QT.mjs";
|
|
5
20
|
import {
|
|
6
21
|
ChevronRightIcon
|
|
7
22
|
} from "./chunk-76O2FFGH.mjs";
|
|
@@ -12,19 +27,20 @@ import {
|
|
|
12
27
|
CloseIcon
|
|
13
28
|
} from "./chunk-4WUSAORE.mjs";
|
|
14
29
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
30
|
+
EyeOffIcon
|
|
31
|
+
} from "./chunk-EZB7Q4G2.mjs";
|
|
17
32
|
import {
|
|
18
|
-
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import {
|
|
21
|
-
SearchIcon
|
|
22
|
-
} from "./chunk-3BJDY4K2.mjs";
|
|
33
|
+
EyeIcon
|
|
34
|
+
} from "./chunk-K6ICW5LE.mjs";
|
|
23
35
|
export {
|
|
24
36
|
CheckIcon,
|
|
37
|
+
ChevronDownIcon,
|
|
38
|
+
ChevronLeftIcon,
|
|
25
39
|
ChevronRightIcon,
|
|
26
40
|
CircleIcon,
|
|
27
41
|
CloseIcon,
|
|
42
|
+
EyeIcon,
|
|
43
|
+
EyeOffIcon,
|
|
28
44
|
PlusIcon,
|
|
29
45
|
SaveIcon,
|
|
30
46
|
SearchIcon
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.3",
|
|
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.4.
|
|
30
|
+
"@kopexa/theme": "1.4.3"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kopexa/shared-utils": "1.1.
|
|
34
|
-
"@kopexa/react-utils": "2.0.
|
|
33
|
+
"@kopexa/shared-utils": "1.1.2",
|
|
34
|
+
"@kopexa/react-utils": "2.0.2"
|
|
35
35
|
},
|
|
36
36
|
"clean-package": "../../../clean-package.config.json",
|
|
37
37
|
"module": "dist/index.mjs",
|