@kopexa/icons 7.0.3 → 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/chunk-H42UA2FF.mjs +30 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +43 -16
- package/dist/index.mjs +4 -0
- 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 +2 -2
|
@@ -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
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -6,6 +6,7 @@ export { CircleIcon } from './circle.mjs';
|
|
|
6
6
|
export { CloseIcon } from './close.mjs';
|
|
7
7
|
export { EyeIcon } from './eye.mjs';
|
|
8
8
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
9
|
+
export { NotificationIcon } from './notification-icon.mjs';
|
|
9
10
|
export { PlusIcon } from './plus.mjs';
|
|
10
11
|
export { SaveIcon } from './save.mjs';
|
|
11
12
|
export { SearchIcon } from './search.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { CircleIcon } from './circle.js';
|
|
|
6
6
|
export { CloseIcon } from './close.js';
|
|
7
7
|
export { EyeIcon } from './eye.js';
|
|
8
8
|
export { EyeOffIcon } from './eye-off.js';
|
|
9
|
+
export { NotificationIcon } from './notification-icon.js';
|
|
9
10
|
export { PlusIcon } from './plus.js';
|
|
10
11
|
export { SaveIcon } from './save.js';
|
|
11
12
|
export { SearchIcon } from './search.js';
|
package/dist/index.js
CHANGED
|
@@ -29,6 +29,7 @@ __export(index_exports, {
|
|
|
29
29
|
CloseIcon: () => CloseIcon,
|
|
30
30
|
EyeIcon: () => EyeIcon,
|
|
31
31
|
EyeOffIcon: () => EyeOffIcon,
|
|
32
|
+
NotificationIcon: () => NotificationIcon,
|
|
32
33
|
PlusIcon: () => PlusIcon,
|
|
33
34
|
SaveIcon: () => SaveIcon,
|
|
34
35
|
SearchIcon: () => SearchIcon
|
|
@@ -234,9 +235,9 @@ var EyeOffIcon = (props) => {
|
|
|
234
235
|
);
|
|
235
236
|
};
|
|
236
237
|
|
|
237
|
-
// src/
|
|
238
|
+
// src/notification-icon.tsx
|
|
238
239
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
239
|
-
var
|
|
240
|
+
var NotificationIcon = (props) => {
|
|
240
241
|
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
241
242
|
"svg",
|
|
242
243
|
{
|
|
@@ -251,17 +252,17 @@ var PlusIcon = (props) => {
|
|
|
251
252
|
strokeLinejoin: "round",
|
|
252
253
|
...props,
|
|
253
254
|
children: [
|
|
254
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "
|
|
255
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
256
|
-
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "
|
|
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" })
|
|
257
258
|
]
|
|
258
259
|
}
|
|
259
260
|
);
|
|
260
261
|
};
|
|
261
262
|
|
|
262
|
-
// src/
|
|
263
|
+
// src/plus.tsx
|
|
263
264
|
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
264
|
-
var
|
|
265
|
+
var PlusIcon = (props) => {
|
|
265
266
|
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
266
267
|
"svg",
|
|
267
268
|
{
|
|
@@ -276,18 +277,17 @@ var SaveIcon = (props) => {
|
|
|
276
277
|
strokeLinejoin: "round",
|
|
277
278
|
...props,
|
|
278
279
|
children: [
|
|
279
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "
|
|
280
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "
|
|
281
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "
|
|
282
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
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" })
|
|
283
283
|
]
|
|
284
284
|
}
|
|
285
285
|
);
|
|
286
286
|
};
|
|
287
287
|
|
|
288
|
-
// src/
|
|
288
|
+
// src/save.tsx
|
|
289
289
|
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
290
|
-
var
|
|
290
|
+
var SaveIcon = (props) => {
|
|
291
291
|
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
292
292
|
"svg",
|
|
293
293
|
{
|
|
@@ -302,9 +302,35 @@ var SearchIcon = (props) => {
|
|
|
302
302
|
strokeLinejoin: "round",
|
|
303
303
|
...props,
|
|
304
304
|
children: [
|
|
305
|
-
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "
|
|
306
|
-
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "
|
|
307
|
-
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("
|
|
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" })
|
|
309
|
+
]
|
|
310
|
+
}
|
|
311
|
+
);
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
// src/search.tsx
|
|
315
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
316
|
+
var SearchIcon = (props) => {
|
|
317
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
318
|
+
"svg",
|
|
319
|
+
{
|
|
320
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
321
|
+
width: "24",
|
|
322
|
+
height: "24",
|
|
323
|
+
viewBox: "0 0 24 24",
|
|
324
|
+
fill: "none",
|
|
325
|
+
stroke: "currentColor",
|
|
326
|
+
strokeWidth: "2",
|
|
327
|
+
strokeLinecap: "round",
|
|
328
|
+
strokeLinejoin: "round",
|
|
329
|
+
...props,
|
|
330
|
+
children: [
|
|
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" })
|
|
308
334
|
]
|
|
309
335
|
}
|
|
310
336
|
);
|
|
@@ -319,6 +345,7 @@ var SearchIcon = (props) => {
|
|
|
319
345
|
CloseIcon,
|
|
320
346
|
EyeIcon,
|
|
321
347
|
EyeOffIcon,
|
|
348
|
+
NotificationIcon,
|
|
322
349
|
PlusIcon,
|
|
323
350
|
SaveIcon,
|
|
324
351
|
SearchIcon
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
NotificationIcon
|
|
4
|
+
} from "./chunk-H42UA2FF.mjs";
|
|
2
5
|
import {
|
|
3
6
|
PlusIcon
|
|
4
7
|
} from "./chunk-VT4DJPGF.mjs";
|
|
@@ -41,6 +44,7 @@ export {
|
|
|
41
44
|
CloseIcon,
|
|
42
45
|
EyeIcon,
|
|
43
46
|
EyeOffIcon,
|
|
47
|
+
NotificationIcon,
|
|
44
48
|
PlusIcon,
|
|
45
49
|
SaveIcon,
|
|
46
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,7 +27,7 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
|
-
"@kopexa/theme": "1.4.
|
|
30
|
+
"@kopexa/theme": "1.4.4"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.2",
|