@kopexa/icons 8.0.2 → 8.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/check-circle.d.mts +7 -0
- package/dist/check-circle.d.ts +7 -0
- package/dist/check-circle.js +53 -0
- package/dist/check-circle.mjs +7 -0
- package/dist/chunk-FWMS5EZF.mjs +30 -0
- package/dist/chunk-M2RUR5WR.mjs +33 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +112 -55
- package/dist/index.mjs +11 -3
- package/dist/linkedin.d.mts +7 -0
- package/dist/linkedin.d.ts +7 -0
- package/dist/linkedin.js +56 -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,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/check-circle.tsx
|
|
22
|
+
var check_circle_exports = {};
|
|
23
|
+
__export(check_circle_exports, {
|
|
24
|
+
CheckCirleIcon: () => CheckCirleIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(check_circle_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var CheckCirleIcon = ({ 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 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 Circle Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
CheckCirleIcon
|
|
53
|
+
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/check-circle.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var CheckCirleIcon = ({ 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 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 Circle Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export {
|
|
29
|
+
CheckCirleIcon
|
|
30
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
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 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
"aria-hidden": "true",
|
|
19
|
+
focusable: "false",
|
|
20
|
+
...props,
|
|
21
|
+
children: [
|
|
22
|
+
/* @__PURE__ */ jsx("title", { children: "LinkedIn Icon" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
24
|
+
/* @__PURE__ */ jsx("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
25
|
+
/* @__PURE__ */ jsx("circle", { cx: "4", cy: "4", r: "2" })
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export {
|
|
32
|
+
LinkedInIcon
|
|
33
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { CheckIcon } from './check.mjs';
|
|
2
|
+
export { CheckCirleIcon } from './check-circle.mjs';
|
|
2
3
|
export { ChevronDownIcon } from './chevron-down.mjs';
|
|
3
4
|
export { ChevronLeftIcon } from './chevron-left.mjs';
|
|
4
5
|
export { ChevronRightIcon } from './chevron-right.mjs';
|
|
@@ -6,6 +7,7 @@ export { CircleIcon } from './circle.mjs';
|
|
|
6
7
|
export { CloseIcon } from './close.mjs';
|
|
7
8
|
export { EyeIcon } from './eye.mjs';
|
|
8
9
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
10
|
+
export { LinkedInIcon } from './linkedin.mjs';
|
|
9
11
|
export { NotificationIcon } from './notification-icon.mjs';
|
|
10
12
|
export { PlusIcon } from './plus.mjs';
|
|
11
13
|
export { SaveIcon } from './save.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { CheckIcon } from './check.js';
|
|
2
|
+
export { CheckCirleIcon } from './check-circle.js';
|
|
2
3
|
export { ChevronDownIcon } from './chevron-down.js';
|
|
3
4
|
export { ChevronLeftIcon } from './chevron-left.js';
|
|
4
5
|
export { ChevronRightIcon } from './chevron-right.js';
|
|
@@ -6,6 +7,7 @@ export { CircleIcon } from './circle.js';
|
|
|
6
7
|
export { CloseIcon } from './close.js';
|
|
7
8
|
export { EyeIcon } from './eye.js';
|
|
8
9
|
export { EyeOffIcon } from './eye-off.js';
|
|
10
|
+
export { LinkedInIcon } from './linkedin.js';
|
|
9
11
|
export { NotificationIcon } from './notification-icon.js';
|
|
10
12
|
export { PlusIcon } from './plus.js';
|
|
11
13
|
export { SaveIcon } from './save.js';
|
package/dist/index.js
CHANGED
|
@@ -21,6 +21,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
// src/index.ts
|
|
22
22
|
var index_exports = {};
|
|
23
23
|
__export(index_exports, {
|
|
24
|
+
CheckCirleIcon: () => CheckCirleIcon,
|
|
24
25
|
CheckIcon: () => CheckIcon,
|
|
25
26
|
ChevronDownIcon: () => ChevronDownIcon,
|
|
26
27
|
ChevronLeftIcon: () => ChevronLeftIcon,
|
|
@@ -29,6 +30,7 @@ __export(index_exports, {
|
|
|
29
30
|
CloseIcon: () => CloseIcon,
|
|
30
31
|
EyeIcon: () => EyeIcon,
|
|
31
32
|
EyeOffIcon: () => EyeOffIcon,
|
|
33
|
+
LinkedInIcon: () => LinkedInIcon,
|
|
32
34
|
NotificationIcon: () => NotificationIcon,
|
|
33
35
|
PlusIcon: () => PlusIcon,
|
|
34
36
|
SaveIcon: () => SaveIcon,
|
|
@@ -60,10 +62,35 @@ var CheckIcon = (props) => {
|
|
|
60
62
|
);
|
|
61
63
|
};
|
|
62
64
|
|
|
63
|
-
// src/
|
|
65
|
+
// src/check-circle.tsx
|
|
64
66
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
65
|
-
var
|
|
67
|
+
var CheckCirleIcon = ({ size = 24, ...props }) => {
|
|
66
68
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
69
|
+
"svg",
|
|
70
|
+
{
|
|
71
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
72
|
+
width: size,
|
|
73
|
+
height: size,
|
|
74
|
+
viewBox: "0 0 24 24",
|
|
75
|
+
fill: "none",
|
|
76
|
+
stroke: "currentColor",
|
|
77
|
+
strokeWidth: "2",
|
|
78
|
+
strokeLinecap: "round",
|
|
79
|
+
strokeLinejoin: "round",
|
|
80
|
+
...props,
|
|
81
|
+
children: [
|
|
82
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Check Circle Icon" }),
|
|
83
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
84
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
);
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
// src/chevron-down.tsx
|
|
91
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
92
|
+
var ChevronDownIcon = (props) => {
|
|
93
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
67
94
|
"svg",
|
|
68
95
|
{
|
|
69
96
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -77,17 +104,17 @@ var ChevronDownIcon = (props) => {
|
|
|
77
104
|
strokeLinejoin: "round",
|
|
78
105
|
...props,
|
|
79
106
|
children: [
|
|
80
|
-
/* @__PURE__ */ (0,
|
|
81
|
-
/* @__PURE__ */ (0,
|
|
107
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Chevron Down Icon" }),
|
|
108
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
82
109
|
]
|
|
83
110
|
}
|
|
84
111
|
);
|
|
85
112
|
};
|
|
86
113
|
|
|
87
114
|
// src/chevron-left.tsx
|
|
88
|
-
var
|
|
115
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
89
116
|
var ChevronLeftIcon = (props) => {
|
|
90
|
-
return /* @__PURE__ */ (0,
|
|
117
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
91
118
|
"svg",
|
|
92
119
|
{
|
|
93
120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -101,17 +128,17 @@ var ChevronLeftIcon = (props) => {
|
|
|
101
128
|
strokeLinejoin: "round",
|
|
102
129
|
...props,
|
|
103
130
|
children: [
|
|
104
|
-
/* @__PURE__ */ (0,
|
|
105
|
-
/* @__PURE__ */ (0,
|
|
131
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Chevron Left Icon" }),
|
|
132
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
106
133
|
]
|
|
107
134
|
}
|
|
108
135
|
);
|
|
109
136
|
};
|
|
110
137
|
|
|
111
138
|
// src/chevron-right.tsx
|
|
112
|
-
var
|
|
139
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
113
140
|
var ChevronRightIcon = (props) => {
|
|
114
|
-
return /* @__PURE__ */ (0,
|
|
141
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
115
142
|
"svg",
|
|
116
143
|
{
|
|
117
144
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -125,17 +152,17 @@ var ChevronRightIcon = (props) => {
|
|
|
125
152
|
strokeLinejoin: "round",
|
|
126
153
|
...props,
|
|
127
154
|
children: [
|
|
128
|
-
/* @__PURE__ */ (0,
|
|
129
|
-
/* @__PURE__ */ (0,
|
|
155
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: "Chevron Right Icon" }),
|
|
156
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
130
157
|
]
|
|
131
158
|
}
|
|
132
159
|
);
|
|
133
160
|
};
|
|
134
161
|
|
|
135
162
|
// src/circle.tsx
|
|
136
|
-
var
|
|
163
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
137
164
|
var CircleIcon = (props) => {
|
|
138
|
-
return /* @__PURE__ */ (0,
|
|
165
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
139
166
|
"svg",
|
|
140
167
|
{
|
|
141
168
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -149,19 +176,19 @@ var CircleIcon = (props) => {
|
|
|
149
176
|
strokeLinejoin: "round",
|
|
150
177
|
...props,
|
|
151
178
|
children: [
|
|
152
|
-
/* @__PURE__ */ (0,
|
|
153
|
-
/* @__PURE__ */ (0,
|
|
179
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: "Circle Icon" }),
|
|
180
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
154
181
|
" ",
|
|
155
|
-
/* @__PURE__ */ (0,
|
|
182
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M20 6 9 17l-5-5" })
|
|
156
183
|
]
|
|
157
184
|
}
|
|
158
185
|
);
|
|
159
186
|
};
|
|
160
187
|
|
|
161
188
|
// src/close.tsx
|
|
162
|
-
var
|
|
189
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
163
190
|
var CloseIcon = (props) => {
|
|
164
|
-
return /* @__PURE__ */ (0,
|
|
191
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
165
192
|
"svg",
|
|
166
193
|
{
|
|
167
194
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -175,18 +202,18 @@ var CloseIcon = (props) => {
|
|
|
175
202
|
strokeLinejoin: "round",
|
|
176
203
|
...props,
|
|
177
204
|
children: [
|
|
178
|
-
/* @__PURE__ */ (0,
|
|
179
|
-
/* @__PURE__ */ (0,
|
|
180
|
-
/* @__PURE__ */ (0,
|
|
205
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: "Close Icon" }),
|
|
206
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "M18 6 6 18" }),
|
|
207
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", { d: "m6 6 12 12" })
|
|
181
208
|
]
|
|
182
209
|
}
|
|
183
210
|
);
|
|
184
211
|
};
|
|
185
212
|
|
|
186
213
|
// src/eye.tsx
|
|
187
|
-
var
|
|
214
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
188
215
|
var EyeIcon = (props) => {
|
|
189
|
-
return /* @__PURE__ */ (0,
|
|
216
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
190
217
|
"svg",
|
|
191
218
|
{
|
|
192
219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -200,18 +227,18 @@ var EyeIcon = (props) => {
|
|
|
200
227
|
strokeLinejoin: "round",
|
|
201
228
|
...props,
|
|
202
229
|
children: [
|
|
203
|
-
/* @__PURE__ */ (0,
|
|
204
|
-
/* @__PURE__ */ (0,
|
|
205
|
-
/* @__PURE__ */ (0,
|
|
230
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: "Eye Icon" }),
|
|
231
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.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" }),
|
|
232
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
206
233
|
]
|
|
207
234
|
}
|
|
208
235
|
);
|
|
209
236
|
};
|
|
210
237
|
|
|
211
238
|
// src/eye-off.tsx
|
|
212
|
-
var
|
|
239
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
213
240
|
var EyeOffIcon = (props) => {
|
|
214
|
-
return /* @__PURE__ */ (0,
|
|
241
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
215
242
|
"svg",
|
|
216
243
|
{
|
|
217
244
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -225,20 +252,48 @@ var EyeOffIcon = (props) => {
|
|
|
225
252
|
strokeLinejoin: "round",
|
|
226
253
|
...props,
|
|
227
254
|
children: [
|
|
228
|
-
/* @__PURE__ */ (0,
|
|
229
|
-
/* @__PURE__ */ (0,
|
|
230
|
-
/* @__PURE__ */ (0,
|
|
231
|
-
/* @__PURE__ */ (0,
|
|
232
|
-
/* @__PURE__ */ (0,
|
|
255
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { children: "Eye Off Icon" }),
|
|
256
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.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" }),
|
|
257
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
258
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.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" }),
|
|
259
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { d: "m2 2 20 20" })
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
// src/linkedin.tsx
|
|
266
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
267
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
268
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
269
|
+
"svg",
|
|
270
|
+
{
|
|
271
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
272
|
+
width: size,
|
|
273
|
+
height: size,
|
|
274
|
+
viewBox: "0 0 24 24",
|
|
275
|
+
fill: "none",
|
|
276
|
+
stroke: "currentColor",
|
|
277
|
+
strokeWidth: "2",
|
|
278
|
+
strokeLinecap: "round",
|
|
279
|
+
strokeLinejoin: "round",
|
|
280
|
+
"aria-hidden": "true",
|
|
281
|
+
focusable: "false",
|
|
282
|
+
...props,
|
|
283
|
+
children: [
|
|
284
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { children: "LinkedIn Icon" }),
|
|
285
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
286
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
287
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
233
288
|
]
|
|
234
289
|
}
|
|
235
290
|
);
|
|
236
291
|
};
|
|
237
292
|
|
|
238
293
|
// src/notification-icon.tsx
|
|
239
|
-
var
|
|
294
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
240
295
|
var NotificationIcon = (props) => {
|
|
241
|
-
return /* @__PURE__ */ (0,
|
|
296
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
242
297
|
"svg",
|
|
243
298
|
{
|
|
244
299
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -252,18 +307,18 @@ var NotificationIcon = (props) => {
|
|
|
252
307
|
strokeLinejoin: "round",
|
|
253
308
|
...props,
|
|
254
309
|
children: [
|
|
255
|
-
/* @__PURE__ */ (0,
|
|
256
|
-
/* @__PURE__ */ (0,
|
|
257
|
-
/* @__PURE__ */ (0,
|
|
310
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { children: "Notification Icon" }),
|
|
311
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
312
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.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
313
|
]
|
|
259
314
|
}
|
|
260
315
|
);
|
|
261
316
|
};
|
|
262
317
|
|
|
263
318
|
// src/plus.tsx
|
|
264
|
-
var
|
|
319
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
265
320
|
var PlusIcon = (props) => {
|
|
266
|
-
return /* @__PURE__ */ (0,
|
|
321
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
267
322
|
"svg",
|
|
268
323
|
{
|
|
269
324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -277,18 +332,18 @@ var PlusIcon = (props) => {
|
|
|
277
332
|
strokeLinejoin: "round",
|
|
278
333
|
...props,
|
|
279
334
|
children: [
|
|
280
|
-
/* @__PURE__ */ (0,
|
|
281
|
-
/* @__PURE__ */ (0,
|
|
282
|
-
/* @__PURE__ */ (0,
|
|
335
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { children: "Plus Icon" }),
|
|
336
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M5 12h14" }),
|
|
337
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { d: "M12 5v14" })
|
|
283
338
|
]
|
|
284
339
|
}
|
|
285
340
|
);
|
|
286
341
|
};
|
|
287
342
|
|
|
288
343
|
// src/save.tsx
|
|
289
|
-
var
|
|
344
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
290
345
|
var SaveIcon = (props) => {
|
|
291
|
-
return /* @__PURE__ */ (0,
|
|
346
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
292
347
|
"svg",
|
|
293
348
|
{
|
|
294
349
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -302,19 +357,19 @@ var SaveIcon = (props) => {
|
|
|
302
357
|
strokeLinejoin: "round",
|
|
303
358
|
...props,
|
|
304
359
|
children: [
|
|
305
|
-
/* @__PURE__ */ (0,
|
|
306
|
-
/* @__PURE__ */ (0,
|
|
307
|
-
/* @__PURE__ */ (0,
|
|
308
|
-
/* @__PURE__ */ (0,
|
|
360
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { children: "Save Icon" }),
|
|
361
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.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" }),
|
|
362
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
363
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
309
364
|
]
|
|
310
365
|
}
|
|
311
366
|
);
|
|
312
367
|
};
|
|
313
368
|
|
|
314
369
|
// src/search.tsx
|
|
315
|
-
var
|
|
370
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
316
371
|
var SearchIcon = (props) => {
|
|
317
|
-
return /* @__PURE__ */ (0,
|
|
372
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
318
373
|
"svg",
|
|
319
374
|
{
|
|
320
375
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -328,15 +383,16 @@ var SearchIcon = (props) => {
|
|
|
328
383
|
strokeLinejoin: "round",
|
|
329
384
|
...props,
|
|
330
385
|
children: [
|
|
331
|
-
/* @__PURE__ */ (0,
|
|
332
|
-
/* @__PURE__ */ (0,
|
|
333
|
-
/* @__PURE__ */ (0,
|
|
386
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { children: "Search Icon" }),
|
|
387
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
388
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
334
389
|
]
|
|
335
390
|
}
|
|
336
391
|
);
|
|
337
392
|
};
|
|
338
393
|
// Annotate the CommonJS export names for ESM import in node:
|
|
339
394
|
0 && (module.exports = {
|
|
395
|
+
CheckCirleIcon,
|
|
340
396
|
CheckIcon,
|
|
341
397
|
ChevronDownIcon,
|
|
342
398
|
ChevronLeftIcon,
|
|
@@ -345,6 +401,7 @@ var SearchIcon = (props) => {
|
|
|
345
401
|
CloseIcon,
|
|
346
402
|
EyeIcon,
|
|
347
403
|
EyeOffIcon,
|
|
404
|
+
LinkedInIcon,
|
|
348
405
|
NotificationIcon,
|
|
349
406
|
PlusIcon,
|
|
350
407
|
SaveIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
EyeIcon
|
|
4
|
+
} from "./chunk-K6ICW5LE.mjs";
|
|
5
|
+
import {
|
|
6
|
+
LinkedInIcon
|
|
7
|
+
} from "./chunk-M2RUR5WR.mjs";
|
|
2
8
|
import {
|
|
3
9
|
NotificationIcon
|
|
4
10
|
} from "./chunk-H42UA2FF.mjs";
|
|
@@ -11,6 +17,9 @@ import {
|
|
|
11
17
|
import {
|
|
12
18
|
SearchIcon
|
|
13
19
|
} from "./chunk-3BJDY4K2.mjs";
|
|
20
|
+
import {
|
|
21
|
+
CheckCirleIcon
|
|
22
|
+
} from "./chunk-FWMS5EZF.mjs";
|
|
14
23
|
import {
|
|
15
24
|
CheckIcon
|
|
16
25
|
} from "./chunk-P4SLDC2H.mjs";
|
|
@@ -32,10 +41,8 @@ import {
|
|
|
32
41
|
import {
|
|
33
42
|
EyeOffIcon
|
|
34
43
|
} from "./chunk-EZB7Q4G2.mjs";
|
|
35
|
-
import {
|
|
36
|
-
EyeIcon
|
|
37
|
-
} from "./chunk-K6ICW5LE.mjs";
|
|
38
44
|
export {
|
|
45
|
+
CheckCirleIcon,
|
|
39
46
|
CheckIcon,
|
|
40
47
|
ChevronDownIcon,
|
|
41
48
|
ChevronLeftIcon,
|
|
@@ -44,6 +51,7 @@ export {
|
|
|
44
51
|
CloseIcon,
|
|
45
52
|
EyeIcon,
|
|
46
53
|
EyeOffIcon,
|
|
54
|
+
LinkedInIcon,
|
|
47
55
|
NotificationIcon,
|
|
48
56
|
PlusIcon,
|
|
49
57
|
SaveIcon,
|
package/dist/linkedin.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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 24 24",
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
"aria-hidden": "true",
|
|
42
|
+
focusable: "false",
|
|
43
|
+
...props,
|
|
44
|
+
children: [
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "LinkedIn Icon" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
);
|
|
52
|
+
};
|
|
53
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
54
|
+
0 && (module.exports = {
|
|
55
|
+
LinkedInIcon
|
|
56
|
+
});
|
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.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.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",
|