@kopexa/icons 8.0.2 → 8.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/chunk-FJOYQRW6.mjs +31 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +49 -21
- package/dist/index.mjs +4 -0
- package/dist/linkedin.d.mts +7 -0
- package/dist/linkedin.d.ts +7 -0
- package/dist/linkedin.js +54 -0
- package/dist/linkedin.mjs +7 -0
- package/dist/types.d.mts +3 -1
- package/dist/types.d.ts +3 -1
- package/package.json +4 -4
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/linkedin.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
6
|
+
return /* @__PURE__ */ jsxs(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 30 31",
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "1",
|
|
16
|
+
"aria-hidden": "true",
|
|
17
|
+
focusable: "false",
|
|
18
|
+
...props,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: "LinkedIn Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20 10.5C21.9891 10.5 23.8968 11.2902 25.3033 12.6967C26.7098 14.1032 27.5 16.0109 27.5 18V26.75H22.5V18C22.5 17.337 22.2366 16.7011 21.7678 16.2322C21.2989 15.7634 20.663 15.5 20 15.5C19.337 15.5 18.7011 15.7634 18.2322 16.2322C17.7634 16.7011 17.5 17.337 17.5 18V26.75H12.5V18C12.5 16.0109 13.2902 14.1032 14.6967 12.6967C16.1032 11.2902 18.0109 10.5 20 10.5Z" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M7.5 11.75H2.5V26.75H7.5V11.75Z" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M5 8C6.38071 8 7.5 6.88071 7.5 5.5C7.5 4.11929 6.38071 3 5 3C3.61929 3 2.5 4.11929 2.5 5.5C2.5 6.88071 3.61929 8 5 8Z" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
LinkedInIcon
|
|
31
|
+
};
|
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 { LinkedInIcon } from './linkedin.mjs';
|
|
9
10
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
10
11
|
export { PlusIcon } from './plus.mjs';
|
|
11
12
|
export { SaveIcon } from './save.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 { LinkedInIcon } from './linkedin.js';
|
|
9
10
|
export { NotificationIcon } from './notification-icon.js';
|
|
10
11
|
export { PlusIcon } from './plus.js';
|
|
11
12
|
export { SaveIcon } from './save.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
|
+
LinkedInIcon: () => LinkedInIcon,
|
|
32
33
|
NotificationIcon: () => NotificationIcon,
|
|
33
34
|
PlusIcon: () => PlusIcon,
|
|
34
35
|
SaveIcon: () => SaveIcon,
|
|
@@ -235,10 +236,36 @@ var EyeOffIcon = (props) => {
|
|
|
235
236
|
);
|
|
236
237
|
};
|
|
237
238
|
|
|
238
|
-
// src/
|
|
239
|
+
// src/linkedin.tsx
|
|
239
240
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
240
|
-
var
|
|
241
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
241
242
|
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
243
|
+
"svg",
|
|
244
|
+
{
|
|
245
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
246
|
+
width: size,
|
|
247
|
+
height: size,
|
|
248
|
+
viewBox: "0 0 30 31",
|
|
249
|
+
fill: "currentColor",
|
|
250
|
+
stroke: "currentColor",
|
|
251
|
+
strokeWidth: "1",
|
|
252
|
+
"aria-hidden": "true",
|
|
253
|
+
focusable: "false",
|
|
254
|
+
...props,
|
|
255
|
+
children: [
|
|
256
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "LinkedIn Icon" }),
|
|
257
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M20 10.5C21.9891 10.5 23.8968 11.2902 25.3033 12.6967C26.7098 14.1032 27.5 16.0109 27.5 18V26.75H22.5V18C22.5 17.337 22.2366 16.7011 21.7678 16.2322C21.2989 15.7634 20.663 15.5 20 15.5C19.337 15.5 18.7011 15.7634 18.2322 16.2322C17.7634 16.7011 17.5 17.337 17.5 18V26.75H12.5V18C12.5 16.0109 13.2902 14.1032 14.6967 12.6967C16.1032 11.2902 18.0109 10.5 20 10.5Z" }),
|
|
258
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M7.5 11.75H2.5V26.75H7.5V11.75Z" }),
|
|
259
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M5 8C6.38071 8 7.5 6.88071 7.5 5.5C7.5 4.11929 6.38071 3 5 3C3.61929 3 2.5 4.11929 2.5 5.5C2.5 6.88071 3.61929 8 5 8Z" })
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
// src/notification-icon.tsx
|
|
266
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
267
|
+
var NotificationIcon = (props) => {
|
|
268
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
242
269
|
"svg",
|
|
243
270
|
{
|
|
244
271
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -252,18 +279,18 @@ var NotificationIcon = (props) => {
|
|
|
252
279
|
strokeLinejoin: "round",
|
|
253
280
|
...props,
|
|
254
281
|
children: [
|
|
255
|
-
/* @__PURE__ */ (0,
|
|
256
|
-
/* @__PURE__ */ (0,
|
|
257
|
-
/* @__PURE__ */ (0,
|
|
282
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "Notification Icon" }),
|
|
283
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
284
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.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" })
|
|
258
285
|
]
|
|
259
286
|
}
|
|
260
287
|
);
|
|
261
288
|
};
|
|
262
289
|
|
|
263
290
|
// src/plus.tsx
|
|
264
|
-
var
|
|
291
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
265
292
|
var PlusIcon = (props) => {
|
|
266
|
-
return /* @__PURE__ */ (0,
|
|
293
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
267
294
|
"svg",
|
|
268
295
|
{
|
|
269
296
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -277,18 +304,18 @@ var PlusIcon = (props) => {
|
|
|
277
304
|
strokeLinejoin: "round",
|
|
278
305
|
...props,
|
|
279
306
|
children: [
|
|
280
|
-
/* @__PURE__ */ (0,
|
|
281
|
-
/* @__PURE__ */ (0,
|
|
282
|
-
/* @__PURE__ */ (0,
|
|
307
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "Plus Icon" }),
|
|
308
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M5 12h14" }),
|
|
309
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M12 5v14" })
|
|
283
310
|
]
|
|
284
311
|
}
|
|
285
312
|
);
|
|
286
313
|
};
|
|
287
314
|
|
|
288
315
|
// src/save.tsx
|
|
289
|
-
var
|
|
316
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
290
317
|
var SaveIcon = (props) => {
|
|
291
|
-
return /* @__PURE__ */ (0,
|
|
318
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
292
319
|
"svg",
|
|
293
320
|
{
|
|
294
321
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -302,19 +329,19 @@ var SaveIcon = (props) => {
|
|
|
302
329
|
strokeLinejoin: "round",
|
|
303
330
|
...props,
|
|
304
331
|
children: [
|
|
305
|
-
/* @__PURE__ */ (0,
|
|
306
|
-
/* @__PURE__ */ (0,
|
|
307
|
-
/* @__PURE__ */ (0,
|
|
308
|
-
/* @__PURE__ */ (0,
|
|
332
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { children: "Save Icon" }),
|
|
333
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.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" }),
|
|
334
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
335
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
309
336
|
]
|
|
310
337
|
}
|
|
311
338
|
);
|
|
312
339
|
};
|
|
313
340
|
|
|
314
341
|
// src/search.tsx
|
|
315
|
-
var
|
|
342
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
316
343
|
var SearchIcon = (props) => {
|
|
317
|
-
return /* @__PURE__ */ (0,
|
|
344
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
318
345
|
"svg",
|
|
319
346
|
{
|
|
320
347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -328,9 +355,9 @@ var SearchIcon = (props) => {
|
|
|
328
355
|
strokeLinejoin: "round",
|
|
329
356
|
...props,
|
|
330
357
|
children: [
|
|
331
|
-
/* @__PURE__ */ (0,
|
|
332
|
-
/* @__PURE__ */ (0,
|
|
333
|
-
/* @__PURE__ */ (0,
|
|
358
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { children: "Search Icon" }),
|
|
359
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
360
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
334
361
|
]
|
|
335
362
|
}
|
|
336
363
|
);
|
|
@@ -345,6 +372,7 @@ var SearchIcon = (props) => {
|
|
|
345
372
|
CloseIcon,
|
|
346
373
|
EyeIcon,
|
|
347
374
|
EyeOffIcon,
|
|
375
|
+
LinkedInIcon,
|
|
348
376
|
NotificationIcon,
|
|
349
377
|
PlusIcon,
|
|
350
378
|
SaveIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
LinkedInIcon
|
|
4
|
+
} from "./chunk-FJOYQRW6.mjs";
|
|
2
5
|
import {
|
|
3
6
|
NotificationIcon
|
|
4
7
|
} from "./chunk-H42UA2FF.mjs";
|
|
@@ -44,6 +47,7 @@ export {
|
|
|
44
47
|
CloseIcon,
|
|
45
48
|
EyeIcon,
|
|
46
49
|
EyeOffIcon,
|
|
50
|
+
LinkedInIcon,
|
|
47
51
|
NotificationIcon,
|
|
48
52
|
PlusIcon,
|
|
49
53
|
SaveIcon,
|
package/dist/linkedin.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/linkedin.tsx
|
|
22
|
+
var linkedin_exports = {};
|
|
23
|
+
__export(linkedin_exports, {
|
|
24
|
+
LinkedInIcon: () => LinkedInIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(linkedin_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: size,
|
|
34
|
+
height: size,
|
|
35
|
+
viewBox: "0 0 30 31",
|
|
36
|
+
fill: "currentColor",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "1",
|
|
39
|
+
"aria-hidden": "true",
|
|
40
|
+
focusable: "false",
|
|
41
|
+
...props,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "LinkedIn Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M20 10.5C21.9891 10.5 23.8968 11.2902 25.3033 12.6967C26.7098 14.1032 27.5 16.0109 27.5 18V26.75H22.5V18C22.5 17.337 22.2366 16.7011 21.7678 16.2322C21.2989 15.7634 20.663 15.5 20 15.5C19.337 15.5 18.7011 15.7634 18.2322 16.2322C17.7634 16.7011 17.5 17.337 17.5 18V26.75H12.5V18C12.5 16.0109 13.2902 14.1032 14.6967 12.6967C16.1032 11.2902 18.0109 10.5 20 10.5Z" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7.5 11.75H2.5V26.75H7.5V11.75Z" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M5 8C6.38071 8 7.5 6.88071 7.5 5.5C7.5 4.11929 6.38071 3 5 3C3.61929 3 2.5 4.11929 2.5 5.5C2.5 6.88071 3.61929 8 5 8Z" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
LinkedInIcon
|
|
54
|
+
});
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.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.5.
|
|
30
|
+
"@kopexa/theme": "1.5.3"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kopexa/shared-utils": "1.1.
|
|
34
|
-
"@kopexa/react-utils": "2.0.
|
|
33
|
+
"@kopexa/shared-utils": "1.1.4",
|
|
34
|
+
"@kopexa/react-utils": "2.0.4"
|
|
35
35
|
},
|
|
36
36
|
"clean-package": "../../../clean-package.config.json",
|
|
37
37
|
"module": "dist/index.mjs",
|