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