@kopexa/icons 7.0.1 → 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/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-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/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-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/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/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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +209 -21
- package/dist/index.mjs +31 -3
- package/package.json +4 -4
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-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,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,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
|
+
};
|
|
@@ -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/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,4 +1,11 @@
|
|
|
1
|
+
export { CheckIcon } from './check.mjs';
|
|
2
|
+
export { ChevronDownIcon } from './chevron-down.mjs';
|
|
3
|
+
export { ChevronLeftIcon } from './chevron-left.mjs';
|
|
4
|
+
export { ChevronRightIcon } from './chevron-right.mjs';
|
|
5
|
+
export { CircleIcon } from './circle.mjs';
|
|
1
6
|
export { CloseIcon } from './close.mjs';
|
|
7
|
+
export { EyeIcon } from './eye.mjs';
|
|
8
|
+
export { EyeOffIcon } from './eye-off.mjs';
|
|
2
9
|
export { PlusIcon } from './plus.mjs';
|
|
3
10
|
export { SaveIcon } from './save.mjs';
|
|
4
11
|
export { SearchIcon } from './search.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
+
export { CheckIcon } from './check.js';
|
|
2
|
+
export { ChevronDownIcon } from './chevron-down.js';
|
|
3
|
+
export { ChevronLeftIcon } from './chevron-left.js';
|
|
4
|
+
export { ChevronRightIcon } from './chevron-right.js';
|
|
5
|
+
export { CircleIcon } from './circle.js';
|
|
1
6
|
export { CloseIcon } from './close.js';
|
|
7
|
+
export { EyeIcon } from './eye.js';
|
|
8
|
+
export { EyeOffIcon } from './eye-off.js';
|
|
2
9
|
export { PlusIcon } from './plus.js';
|
|
3
10
|
export { SaveIcon } from './save.js';
|
|
4
11
|
export { SearchIcon } from './search.js';
|
package/dist/index.js
CHANGED
|
@@ -21,16 +21,23 @@ 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
|
+
ChevronDownIcon: () => ChevronDownIcon,
|
|
26
|
+
ChevronLeftIcon: () => ChevronLeftIcon,
|
|
27
|
+
ChevronRightIcon: () => ChevronRightIcon,
|
|
28
|
+
CircleIcon: () => CircleIcon,
|
|
24
29
|
CloseIcon: () => CloseIcon,
|
|
30
|
+
EyeIcon: () => EyeIcon,
|
|
31
|
+
EyeOffIcon: () => EyeOffIcon,
|
|
25
32
|
PlusIcon: () => PlusIcon,
|
|
26
33
|
SaveIcon: () => SaveIcon,
|
|
27
34
|
SearchIcon: () => SearchIcon
|
|
28
35
|
});
|
|
29
36
|
module.exports = __toCommonJS(index_exports);
|
|
30
37
|
|
|
31
|
-
// src/
|
|
38
|
+
// src/check.tsx
|
|
32
39
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
33
|
-
var
|
|
40
|
+
var CheckIcon = (props) => {
|
|
34
41
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
35
42
|
"svg",
|
|
36
43
|
{
|
|
@@ -45,17 +52,16 @@ var CloseIcon = (props) => {
|
|
|
45
52
|
strokeLinejoin: "round",
|
|
46
53
|
...props,
|
|
47
54
|
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" })
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Check Icon" }),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
51
57
|
]
|
|
52
58
|
}
|
|
53
59
|
);
|
|
54
60
|
};
|
|
55
61
|
|
|
56
|
-
// src/
|
|
62
|
+
// src/chevron-down.tsx
|
|
57
63
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
58
|
-
var
|
|
64
|
+
var ChevronDownIcon = (props) => {
|
|
59
65
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
60
66
|
"svg",
|
|
61
67
|
{
|
|
@@ -70,17 +76,16 @@ var PlusIcon = (props) => {
|
|
|
70
76
|
strokeLinejoin: "round",
|
|
71
77
|
...props,
|
|
72
78
|
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" })
|
|
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" })
|
|
76
81
|
]
|
|
77
82
|
}
|
|
78
83
|
);
|
|
79
84
|
};
|
|
80
85
|
|
|
81
|
-
// src/
|
|
86
|
+
// src/chevron-left.tsx
|
|
82
87
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
83
|
-
var
|
|
88
|
+
var ChevronLeftIcon = (props) => {
|
|
84
89
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
85
90
|
"svg",
|
|
86
91
|
{
|
|
@@ -95,18 +100,16 @@ var SaveIcon = (props) => {
|
|
|
95
100
|
strokeLinejoin: "round",
|
|
96
101
|
...props,
|
|
97
102
|
children: [
|
|
98
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "
|
|
99
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "
|
|
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" })
|
|
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" })
|
|
102
105
|
]
|
|
103
106
|
}
|
|
104
107
|
);
|
|
105
108
|
};
|
|
106
109
|
|
|
107
|
-
// src/
|
|
110
|
+
// src/chevron-right.tsx
|
|
108
111
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
109
|
-
var
|
|
112
|
+
var ChevronRightIcon = (props) => {
|
|
110
113
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
111
114
|
"svg",
|
|
112
115
|
{
|
|
@@ -121,16 +124,201 @@ var SearchIcon = (props) => {
|
|
|
121
124
|
strokeLinejoin: "round",
|
|
122
125
|
...props,
|
|
123
126
|
children: [
|
|
124
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "
|
|
125
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "
|
|
126
|
-
|
|
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" }),
|
|
153
|
+
" ",
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
);
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
// src/close.tsx
|
|
161
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
162
|
+
var CloseIcon = (props) => {
|
|
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)(
|
|
189
|
+
"svg",
|
|
190
|
+
{
|
|
191
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
192
|
+
width: "24",
|
|
193
|
+
height: "24",
|
|
194
|
+
viewBox: "0 0 24 24",
|
|
195
|
+
fill: "none",
|
|
196
|
+
stroke: "currentColor",
|
|
197
|
+
strokeWidth: "2",
|
|
198
|
+
strokeLinecap: "round",
|
|
199
|
+
strokeLinejoin: "round",
|
|
200
|
+
...props,
|
|
201
|
+
children: [
|
|
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" })
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
);
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
// src/plus.tsx
|
|
238
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
239
|
+
var PlusIcon = (props) => {
|
|
240
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
241
|
+
"svg",
|
|
242
|
+
{
|
|
243
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
244
|
+
width: "24",
|
|
245
|
+
height: "24",
|
|
246
|
+
viewBox: "0 0 24 24",
|
|
247
|
+
fill: "none",
|
|
248
|
+
stroke: "currentColor",
|
|
249
|
+
strokeWidth: "2",
|
|
250
|
+
strokeLinecap: "round",
|
|
251
|
+
strokeLinejoin: "round",
|
|
252
|
+
...props,
|
|
253
|
+
children: [
|
|
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" })
|
|
257
|
+
]
|
|
258
|
+
}
|
|
259
|
+
);
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
// src/save.tsx
|
|
263
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
264
|
+
var SaveIcon = (props) => {
|
|
265
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
266
|
+
"svg",
|
|
267
|
+
{
|
|
268
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
269
|
+
width: "24",
|
|
270
|
+
height: "24",
|
|
271
|
+
viewBox: "0 0 24 24",
|
|
272
|
+
fill: "none",
|
|
273
|
+
stroke: "currentColor",
|
|
274
|
+
strokeWidth: "2",
|
|
275
|
+
strokeLinecap: "round",
|
|
276
|
+
strokeLinejoin: "round",
|
|
277
|
+
...props,
|
|
278
|
+
children: [
|
|
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" })
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
);
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
// src/search.tsx
|
|
289
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
290
|
+
var SearchIcon = (props) => {
|
|
291
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
292
|
+
"svg",
|
|
293
|
+
{
|
|
294
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
295
|
+
width: "24",
|
|
296
|
+
height: "24",
|
|
297
|
+
viewBox: "0 0 24 24",
|
|
298
|
+
fill: "none",
|
|
299
|
+
stroke: "currentColor",
|
|
300
|
+
strokeWidth: "2",
|
|
301
|
+
strokeLinecap: "round",
|
|
302
|
+
strokeLinejoin: "round",
|
|
303
|
+
...props,
|
|
304
|
+
children: [
|
|
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" })
|
|
127
308
|
]
|
|
128
309
|
}
|
|
129
310
|
);
|
|
130
311
|
};
|
|
131
312
|
// Annotate the CommonJS export names for ESM import in node:
|
|
132
313
|
0 && (module.exports = {
|
|
314
|
+
CheckIcon,
|
|
315
|
+
ChevronDownIcon,
|
|
316
|
+
ChevronLeftIcon,
|
|
317
|
+
ChevronRightIcon,
|
|
318
|
+
CircleIcon,
|
|
133
319
|
CloseIcon,
|
|
320
|
+
EyeIcon,
|
|
321
|
+
EyeOffIcon,
|
|
134
322
|
PlusIcon,
|
|
135
323
|
SaveIcon,
|
|
136
324
|
SearchIcon
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
CloseIcon
|
|
4
|
-
} from "./chunk-4WUSAORE.mjs";
|
|
5
2
|
import {
|
|
6
3
|
PlusIcon
|
|
7
4
|
} from "./chunk-VT4DJPGF.mjs";
|
|
@@ -11,8 +8,39 @@ import {
|
|
|
11
8
|
import {
|
|
12
9
|
SearchIcon
|
|
13
10
|
} from "./chunk-3BJDY4K2.mjs";
|
|
11
|
+
import {
|
|
12
|
+
CheckIcon
|
|
13
|
+
} from "./chunk-P4SLDC2H.mjs";
|
|
14
|
+
import {
|
|
15
|
+
ChevronDownIcon
|
|
16
|
+
} from "./chunk-HSVRK2JV.mjs";
|
|
17
|
+
import {
|
|
18
|
+
ChevronLeftIcon
|
|
19
|
+
} from "./chunk-NKQY55QT.mjs";
|
|
20
|
+
import {
|
|
21
|
+
ChevronRightIcon
|
|
22
|
+
} from "./chunk-76O2FFGH.mjs";
|
|
23
|
+
import {
|
|
24
|
+
CircleIcon
|
|
25
|
+
} from "./chunk-3VPGJKOF.mjs";
|
|
26
|
+
import {
|
|
27
|
+
CloseIcon
|
|
28
|
+
} from "./chunk-4WUSAORE.mjs";
|
|
29
|
+
import {
|
|
30
|
+
EyeOffIcon
|
|
31
|
+
} from "./chunk-EZB7Q4G2.mjs";
|
|
32
|
+
import {
|
|
33
|
+
EyeIcon
|
|
34
|
+
} from "./chunk-K6ICW5LE.mjs";
|
|
14
35
|
export {
|
|
36
|
+
CheckIcon,
|
|
37
|
+
ChevronDownIcon,
|
|
38
|
+
ChevronLeftIcon,
|
|
39
|
+
ChevronRightIcon,
|
|
40
|
+
CircleIcon,
|
|
15
41
|
CloseIcon,
|
|
42
|
+
EyeIcon,
|
|
43
|
+
EyeOffIcon,
|
|
16
44
|
PlusIcon,
|
|
17
45
|
SaveIcon,
|
|
18
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",
|