@kopexa/icons 8.0.3 → 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.
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.mjs';
3
+ import 'react';
4
+
5
+ declare const CheckCirleIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { CheckCirleIcon };
@@ -0,0 +1,7 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { IconSvgProps } from './types.js';
3
+ import 'react';
4
+
5
+ declare const CheckCirleIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
6
+
7
+ export { CheckCirleIcon };
@@ -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,7 @@
1
+ "use client";
2
+ import {
3
+ CheckCirleIcon
4
+ } from "./chunk-FWMS5EZF.mjs";
5
+ export {
6
+ CheckCirleIcon
7
+ };
@@ -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';
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';
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,
@@ -61,10 +62,35 @@ var CheckIcon = (props) => {
61
62
  );
62
63
  };
63
64
 
64
- // src/chevron-down.tsx
65
+ // src/check-circle.tsx
65
66
  var import_jsx_runtime2 = require("react/jsx-runtime");
66
- var ChevronDownIcon = (props) => {
67
+ var CheckCirleIcon = ({ size = 24, ...props }) => {
67
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)(
68
94
  "svg",
69
95
  {
70
96
  xmlns: "http://www.w3.org/2000/svg",
@@ -78,17 +104,17 @@ var ChevronDownIcon = (props) => {
78
104
  strokeLinejoin: "round",
79
105
  ...props,
80
106
  children: [
81
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Chevron Down Icon" }),
82
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 9 6 6 6-6" })
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" })
83
109
  ]
84
110
  }
85
111
  );
86
112
  };
87
113
 
88
114
  // src/chevron-left.tsx
89
- var import_jsx_runtime3 = require("react/jsx-runtime");
115
+ var import_jsx_runtime4 = require("react/jsx-runtime");
90
116
  var ChevronLeftIcon = (props) => {
91
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
117
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
92
118
  "svg",
93
119
  {
94
120
  xmlns: "http://www.w3.org/2000/svg",
@@ -102,17 +128,17 @@ var ChevronLeftIcon = (props) => {
102
128
  strokeLinejoin: "round",
103
129
  ...props,
104
130
  children: [
105
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { children: "Chevron Left Icon" }),
106
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15 18-6-6 6-6" })
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" })
107
133
  ]
108
134
  }
109
135
  );
110
136
  };
111
137
 
112
138
  // src/chevron-right.tsx
113
- var import_jsx_runtime4 = require("react/jsx-runtime");
139
+ var import_jsx_runtime5 = require("react/jsx-runtime");
114
140
  var ChevronRightIcon = (props) => {
115
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
141
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
116
142
  "svg",
117
143
  {
118
144
  xmlns: "http://www.w3.org/2000/svg",
@@ -126,17 +152,17 @@ var ChevronRightIcon = (props) => {
126
152
  strokeLinejoin: "round",
127
153
  ...props,
128
154
  children: [
129
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { children: "Chevron Right Icon" }),
130
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", { d: "m9 18 6-6-6-6" })
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" })
131
157
  ]
132
158
  }
133
159
  );
134
160
  };
135
161
 
136
162
  // src/circle.tsx
137
- var import_jsx_runtime5 = require("react/jsx-runtime");
163
+ var import_jsx_runtime6 = require("react/jsx-runtime");
138
164
  var CircleIcon = (props) => {
139
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
165
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
140
166
  "svg",
141
167
  {
142
168
  xmlns: "http://www.w3.org/2000/svg",
@@ -150,19 +176,19 @@ var CircleIcon = (props) => {
150
176
  strokeLinejoin: "round",
151
177
  ...props,
152
178
  children: [
153
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { children: "Circle Icon" }),
154
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
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" }),
155
181
  " ",
156
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M20 6 9 17l-5-5" })
182
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M20 6 9 17l-5-5" })
157
183
  ]
158
184
  }
159
185
  );
160
186
  };
161
187
 
162
188
  // src/close.tsx
163
- var import_jsx_runtime6 = require("react/jsx-runtime");
189
+ var import_jsx_runtime7 = require("react/jsx-runtime");
164
190
  var CloseIcon = (props) => {
165
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
191
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
166
192
  "svg",
167
193
  {
168
194
  xmlns: "http://www.w3.org/2000/svg",
@@ -176,18 +202,18 @@ var CloseIcon = (props) => {
176
202
  strokeLinejoin: "round",
177
203
  ...props,
178
204
  children: [
179
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { children: "Close Icon" }),
180
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "M18 6 6 18" }),
181
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { d: "m6 6 12 12" })
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" })
182
208
  ]
183
209
  }
184
210
  );
185
211
  };
186
212
 
187
213
  // src/eye.tsx
188
- var import_jsx_runtime7 = require("react/jsx-runtime");
214
+ var import_jsx_runtime8 = require("react/jsx-runtime");
189
215
  var EyeIcon = (props) => {
190
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
216
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
191
217
  "svg",
192
218
  {
193
219
  xmlns: "http://www.w3.org/2000/svg",
@@ -201,18 +227,18 @@ var EyeIcon = (props) => {
201
227
  strokeLinejoin: "round",
202
228
  ...props,
203
229
  children: [
204
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { children: "Eye Icon" }),
205
- /* @__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" }),
206
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("circle", { cx: "12", cy: "12", r: "3" })
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" })
207
233
  ]
208
234
  }
209
235
  );
210
236
  };
211
237
 
212
238
  // src/eye-off.tsx
213
- var import_jsx_runtime8 = require("react/jsx-runtime");
239
+ var import_jsx_runtime9 = require("react/jsx-runtime");
214
240
  var EyeOffIcon = (props) => {
215
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
241
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
216
242
  "svg",
217
243
  {
218
244
  xmlns: "http://www.w3.org/2000/svg",
@@ -226,46 +252,48 @@ var EyeOffIcon = (props) => {
226
252
  strokeLinejoin: "round",
227
253
  ...props,
228
254
  children: [
229
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { children: "Eye Off Icon" }),
230
- /* @__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" }),
231
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
232
- /* @__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" }),
233
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "m2 2 20 20" })
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" })
234
260
  ]
235
261
  }
236
262
  );
237
263
  };
238
264
 
239
265
  // src/linkedin.tsx
240
- var import_jsx_runtime9 = require("react/jsx-runtime");
266
+ var import_jsx_runtime10 = require("react/jsx-runtime");
241
267
  var LinkedInIcon = ({ size = 24, ...props }) => {
242
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
268
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
243
269
  "svg",
244
270
  {
245
271
  xmlns: "http://www.w3.org/2000/svg",
246
272
  width: size,
247
273
  height: size,
248
- viewBox: "0 0 30 31",
249
- fill: "currentColor",
274
+ viewBox: "0 0 24 24",
275
+ fill: "none",
250
276
  stroke: "currentColor",
251
- strokeWidth: "1",
277
+ strokeWidth: "2",
278
+ strokeLinecap: "round",
279
+ strokeLinejoin: "round",
252
280
  "aria-hidden": "true",
253
281
  focusable: "false",
254
282
  ...props,
255
283
  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" })
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" })
260
288
  ]
261
289
  }
262
290
  );
263
291
  };
264
292
 
265
293
  // src/notification-icon.tsx
266
- var import_jsx_runtime10 = require("react/jsx-runtime");
294
+ var import_jsx_runtime11 = require("react/jsx-runtime");
267
295
  var NotificationIcon = (props) => {
268
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
296
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
269
297
  "svg",
270
298
  {
271
299
  xmlns: "http://www.w3.org/2000/svg",
@@ -279,18 +307,18 @@ var NotificationIcon = (props) => {
279
307
  strokeLinejoin: "round",
280
308
  ...props,
281
309
  children: [
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" })
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" })
285
313
  ]
286
314
  }
287
315
  );
288
316
  };
289
317
 
290
318
  // src/plus.tsx
291
- var import_jsx_runtime11 = require("react/jsx-runtime");
319
+ var import_jsx_runtime12 = require("react/jsx-runtime");
292
320
  var PlusIcon = (props) => {
293
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
321
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
294
322
  "svg",
295
323
  {
296
324
  xmlns: "http://www.w3.org/2000/svg",
@@ -304,18 +332,18 @@ var PlusIcon = (props) => {
304
332
  strokeLinejoin: "round",
305
333
  ...props,
306
334
  children: [
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" })
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" })
310
338
  ]
311
339
  }
312
340
  );
313
341
  };
314
342
 
315
343
  // src/save.tsx
316
- var import_jsx_runtime12 = require("react/jsx-runtime");
344
+ var import_jsx_runtime13 = require("react/jsx-runtime");
317
345
  var SaveIcon = (props) => {
318
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
346
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
319
347
  "svg",
320
348
  {
321
349
  xmlns: "http://www.w3.org/2000/svg",
@@ -329,19 +357,19 @@ var SaveIcon = (props) => {
329
357
  strokeLinejoin: "round",
330
358
  ...props,
331
359
  children: [
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" })
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" })
336
364
  ]
337
365
  }
338
366
  );
339
367
  };
340
368
 
341
369
  // src/search.tsx
342
- var import_jsx_runtime13 = require("react/jsx-runtime");
370
+ var import_jsx_runtime14 = require("react/jsx-runtime");
343
371
  var SearchIcon = (props) => {
344
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
372
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
345
373
  "svg",
346
374
  {
347
375
  xmlns: "http://www.w3.org/2000/svg",
@@ -355,15 +383,16 @@ var SearchIcon = (props) => {
355
383
  strokeLinejoin: "round",
356
384
  ...props,
357
385
  children: [
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" })
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" })
361
389
  ]
362
390
  }
363
391
  );
364
392
  };
365
393
  // Annotate the CommonJS export names for ESM import in node:
366
394
  0 && (module.exports = {
395
+ CheckCirleIcon,
367
396
  CheckIcon,
368
397
  ChevronDownIcon,
369
398
  ChevronLeftIcon,
package/dist/index.mjs CHANGED
@@ -1,7 +1,10 @@
1
1
  "use client";
2
+ import {
3
+ EyeIcon
4
+ } from "./chunk-K6ICW5LE.mjs";
2
5
  import {
3
6
  LinkedInIcon
4
- } from "./chunk-FJOYQRW6.mjs";
7
+ } from "./chunk-M2RUR5WR.mjs";
5
8
  import {
6
9
  NotificationIcon
7
10
  } from "./chunk-H42UA2FF.mjs";
@@ -14,6 +17,9 @@ import {
14
17
  import {
15
18
  SearchIcon
16
19
  } from "./chunk-3BJDY4K2.mjs";
20
+ import {
21
+ CheckCirleIcon
22
+ } from "./chunk-FWMS5EZF.mjs";
17
23
  import {
18
24
  CheckIcon
19
25
  } from "./chunk-P4SLDC2H.mjs";
@@ -35,10 +41,8 @@ import {
35
41
  import {
36
42
  EyeOffIcon
37
43
  } from "./chunk-EZB7Q4G2.mjs";
38
- import {
39
- EyeIcon
40
- } from "./chunk-K6ICW5LE.mjs";
41
44
  export {
45
+ CheckCirleIcon,
42
46
  CheckIcon,
43
47
  ChevronDownIcon,
44
48
  ChevronLeftIcon,
package/dist/linkedin.js CHANGED
@@ -32,18 +32,20 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
32
32
  xmlns: "http://www.w3.org/2000/svg",
33
33
  width: size,
34
34
  height: size,
35
- viewBox: "0 0 30 31",
36
- fill: "currentColor",
35
+ viewBox: "0 0 24 24",
36
+ fill: "none",
37
37
  stroke: "currentColor",
38
- strokeWidth: "1",
38
+ strokeWidth: "2",
39
+ strokeLinecap: "round",
40
+ strokeLinejoin: "round",
39
41
  "aria-hidden": "true",
40
42
  focusable: "false",
41
43
  ...props,
42
44
  children: [
43
45
  /* @__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" })
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" })
47
49
  ]
48
50
  }
49
51
  );
package/dist/linkedin.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  LinkedInIcon
4
- } from "./chunk-FJOYQRW6.mjs";
4
+ } from "./chunk-M2RUR5WR.mjs";
5
5
  export {
6
6
  LinkedInIcon
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/icons",
3
- "version": "8.0.3",
3
+ "version": "8.0.4",
4
4
  "description": "icons we use in our kopexa products",
5
5
  "keywords": [
6
6
  "icons"
@@ -1,31 +0,0 @@
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
- };