@deemlol/next-icons 0.2.3 → 0.2.5
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/build/icons/camera/ImageDown.d.ts +8 -0
- package/build/icons/camera/ImageMinus.d.ts +8 -0
- package/build/icons/camera/ImageOff.d.ts +8 -0
- package/build/icons/camera/ImagePlay.d.ts +8 -0
- package/build/icons/camera/ImagePlus.d.ts +8 -0
- package/build/icons/camera/ImageScaleDash.d.ts +8 -0
- package/build/icons/camera/ImageUp.d.ts +8 -0
- package/build/icons/currency/Euro.d.ts +8 -0
- package/build/icons/general/DropletDouble.d.ts +8 -0
- package/build/icons/general/DropletOff.d.ts +8 -0
- package/build/icons/social/TwitterNew.d.ts +8 -0
- package/build/index.d.ts +11 -0
- package/build/index.js +368 -1
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImageDown: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImageDown;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImageMinus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImageMinus;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImageOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImageOff;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImagePlay: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImagePlay;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImagePlus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImagePlus;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImageScaleDash: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImageScaleDash;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const ImageUp: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ImageUp;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const Euro: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default Euro;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const DropletDouble: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default DropletDouble;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const DropletOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default DropletOff;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: string | number;
|
|
5
|
+
strokeWidth?: string | number;
|
|
6
|
+
}
|
|
7
|
+
declare const TwitterNew: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default TwitterNew;
|
package/build/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export { default as CreditCard } from "./icons/general/CreditCard";
|
|
|
25
25
|
export { default as Crosshair } from "./icons/general/Crosshair";
|
|
26
26
|
export { default as Delete } from "./icons/general/Delete";
|
|
27
27
|
export { default as Droplet } from "./icons/general/Droplet";
|
|
28
|
+
export { default as DropletDouble } from "./icons/general/DropletDouble";
|
|
29
|
+
export { default as DropletOff } from "./icons/general/DropletOff";
|
|
28
30
|
export { default as FastForward } from "./icons/general/FastForward";
|
|
29
31
|
export { default as Flag } from "./icons/general/Flag";
|
|
30
32
|
export { default as Gift } from "./icons/general/Gift";
|
|
@@ -140,6 +142,7 @@ export { default as Twitch } from "./icons/social/Twitch";
|
|
|
140
142
|
export { default as Twitter } from "./icons/social/Twitter";
|
|
141
143
|
export { default as WhatsApp } from "./icons/social/WhatsApp";
|
|
142
144
|
export { default as YouTube } from "./icons/social/YouTube";
|
|
145
|
+
export { default as TwitterNew } from "./icons/social/TwitterNew";
|
|
143
146
|
export { default as Alarm } from "./icons/alarm/Alarm";
|
|
144
147
|
export { default as AlarmCheck } from "./icons/alarm/AlarmCheck";
|
|
145
148
|
export { default as AlarmMinus } from "./icons/alarm/AlarmMinus";
|
|
@@ -173,6 +176,13 @@ export { default as CameraOff } from "./icons/camera/CameraOff";
|
|
|
173
176
|
export { default as Crop } from "./icons/camera/Crop";
|
|
174
177
|
export { default as Film } from "./icons/camera/Film";
|
|
175
178
|
export { default as Image } from "./icons/camera/Image";
|
|
179
|
+
export { default as ImageDown } from "./icons/camera/ImageDown";
|
|
180
|
+
export { default as ImageMinus } from "./icons/camera/ImageMinus";
|
|
181
|
+
export { default as ImageOff } from "./icons/camera/ImageOff";
|
|
182
|
+
export { default as ImagePlay } from "./icons/camera/ImagePlay";
|
|
183
|
+
export { default as ImagePlus } from "./icons/camera/ImagePlus";
|
|
184
|
+
export { default as ImageUp } from "./icons/camera/ImageUp";
|
|
185
|
+
export { default as ImageScaleDash } from "./icons/camera/ImageScaleDash";
|
|
176
186
|
export { default as Apple } from "./icons/food/Apple";
|
|
177
187
|
export { default as Cookie } from "./icons/food/Cookie";
|
|
178
188
|
export { default as ArrowDown } from "./icons/arrow/ArrowDown";
|
|
@@ -249,6 +259,7 @@ export { default as Divide } from "./icons/divide/Divide";
|
|
|
249
259
|
export { default as DivideCircle } from "./icons/divide/DivideCircle";
|
|
250
260
|
export { default as DivideSquare } from "./icons/divide/DivideSquare";
|
|
251
261
|
export { default as Dollar } from "./icons/currency/Dollar";
|
|
262
|
+
export { default as Euro } from "./icons/currency/Euro";
|
|
252
263
|
export { default as Download } from "./icons/download/Download";
|
|
253
264
|
export { default as DownloadCloud } from "./icons/download/DownloadCloud";
|
|
254
265
|
export { default as Edit } from "./icons/edit/Edit";
|
package/build/index.js
CHANGED
|
@@ -475,6 +475,62 @@ var Droplet = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
475
475
|
});
|
|
476
476
|
Droplet.displayName = "Droplet";
|
|
477
477
|
|
|
478
|
+
var DropletDouble = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
479
|
+
var _b = _a.color,
|
|
480
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
481
|
+
_c = _a.size,
|
|
482
|
+
size = _c === void 0 ? 24 : _c,
|
|
483
|
+
_d = _a.strokeWidth,
|
|
484
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
485
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
486
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
487
|
+
ref: ref,
|
|
488
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
489
|
+
width: size,
|
|
490
|
+
height: size,
|
|
491
|
+
viewBox: "0 0 24 24",
|
|
492
|
+
fill: "none",
|
|
493
|
+
stroke: color,
|
|
494
|
+
strokeWidth: strokeWidth,
|
|
495
|
+
strokeLinecap: "round",
|
|
496
|
+
strokeLinejoin: "round"
|
|
497
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
498
|
+
d: "M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"
|
|
499
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
500
|
+
d: "M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"
|
|
501
|
+
}));
|
|
502
|
+
});
|
|
503
|
+
DropletDouble.displayName = "DropletDouble";
|
|
504
|
+
|
|
505
|
+
var DropletOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
506
|
+
var _b = _a.color,
|
|
507
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
508
|
+
_c = _a.size,
|
|
509
|
+
size = _c === void 0 ? 24 : _c,
|
|
510
|
+
_d = _a.strokeWidth,
|
|
511
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
512
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
513
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
514
|
+
ref: ref,
|
|
515
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
516
|
+
width: size,
|
|
517
|
+
height: size,
|
|
518
|
+
viewBox: "0 0 24 24",
|
|
519
|
+
fill: "none",
|
|
520
|
+
stroke: color,
|
|
521
|
+
strokeWidth: strokeWidth,
|
|
522
|
+
strokeLinecap: "round",
|
|
523
|
+
strokeLinejoin: "round"
|
|
524
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
525
|
+
d: "M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"
|
|
526
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
527
|
+
d: "m2 2 20 20"
|
|
528
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
529
|
+
d: "M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"
|
|
530
|
+
}));
|
|
531
|
+
});
|
|
532
|
+
DropletOff.displayName = "DropletOff";
|
|
533
|
+
|
|
478
534
|
var FastForward = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
479
535
|
var _b = _a.color,
|
|
480
536
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -4178,6 +4234,31 @@ var YouTube = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
4178
4234
|
});
|
|
4179
4235
|
YouTube.displayName = "YouTube";
|
|
4180
4236
|
|
|
4237
|
+
var TwitterNew = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4238
|
+
var _b = _a.color,
|
|
4239
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4240
|
+
_c = _a.size,
|
|
4241
|
+
size = _c === void 0 ? 24 : _c,
|
|
4242
|
+
_d = _a.strokeWidth,
|
|
4243
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4244
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4245
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4246
|
+
ref: ref,
|
|
4247
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4248
|
+
width: size,
|
|
4249
|
+
height: size,
|
|
4250
|
+
viewBox: "0 0 24 24",
|
|
4251
|
+
fill: color,
|
|
4252
|
+
stroke: "none",
|
|
4253
|
+
strokeWidth: strokeWidth,
|
|
4254
|
+
strokeLinecap: "round",
|
|
4255
|
+
strokeLinejoin: "round"
|
|
4256
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4257
|
+
d: "M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z"
|
|
4258
|
+
}));
|
|
4259
|
+
});
|
|
4260
|
+
TwitterNew.displayName = "TwitterNew";
|
|
4261
|
+
|
|
4181
4262
|
var Alarm = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4182
4263
|
var _b = _a.color,
|
|
4183
4264
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -5364,6 +5445,263 @@ var Image = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5364
5445
|
});
|
|
5365
5446
|
Image.displayName = "Image";
|
|
5366
5447
|
|
|
5448
|
+
var ImageDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5449
|
+
var _b = _a.color,
|
|
5450
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5451
|
+
_c = _a.size,
|
|
5452
|
+
size = _c === void 0 ? 24 : _c,
|
|
5453
|
+
_d = _a.strokeWidth,
|
|
5454
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5455
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5456
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5457
|
+
ref: ref,
|
|
5458
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5459
|
+
width: size,
|
|
5460
|
+
height: size,
|
|
5461
|
+
viewBox: "0 0 24 24",
|
|
5462
|
+
fill: "none",
|
|
5463
|
+
stroke: color,
|
|
5464
|
+
strokeWidth: strokeWidth,
|
|
5465
|
+
strokeLinecap: "round",
|
|
5466
|
+
strokeLinejoin: "round"
|
|
5467
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5468
|
+
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"
|
|
5469
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5470
|
+
d: "m14 19 3 3v-5.5"
|
|
5471
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5472
|
+
d: "m17 22 3-3"
|
|
5473
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5474
|
+
cx: "9",
|
|
5475
|
+
cy: "9",
|
|
5476
|
+
r: "2"
|
|
5477
|
+
}));
|
|
5478
|
+
});
|
|
5479
|
+
ImageDown.displayName = "ImageDown";
|
|
5480
|
+
|
|
5481
|
+
var ImageMinus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5482
|
+
var _b = _a.color,
|
|
5483
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5484
|
+
_c = _a.size,
|
|
5485
|
+
size = _c === void 0 ? 24 : _c,
|
|
5486
|
+
_d = _a.strokeWidth,
|
|
5487
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5488
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5489
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5490
|
+
ref: ref,
|
|
5491
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5492
|
+
width: size,
|
|
5493
|
+
height: size,
|
|
5494
|
+
viewBox: "0 0 24 24",
|
|
5495
|
+
fill: "none",
|
|
5496
|
+
stroke: color,
|
|
5497
|
+
strokeWidth: strokeWidth,
|
|
5498
|
+
strokeLinecap: "round",
|
|
5499
|
+
strokeLinejoin: "round"
|
|
5500
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5501
|
+
d: "M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"
|
|
5502
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5503
|
+
x1: "16",
|
|
5504
|
+
x2: "22",
|
|
5505
|
+
y1: "5",
|
|
5506
|
+
y2: "5"
|
|
5507
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5508
|
+
cx: "9",
|
|
5509
|
+
cy: "9",
|
|
5510
|
+
r: "2"
|
|
5511
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5512
|
+
d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
|
|
5513
|
+
}));
|
|
5514
|
+
});
|
|
5515
|
+
ImageMinus.displayName = "ImageMinus";
|
|
5516
|
+
|
|
5517
|
+
var ImageOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5518
|
+
var _b = _a.color,
|
|
5519
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5520
|
+
_c = _a.size,
|
|
5521
|
+
size = _c === void 0 ? 24 : _c,
|
|
5522
|
+
_d = _a.strokeWidth,
|
|
5523
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5524
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5525
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5526
|
+
ref: ref,
|
|
5527
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5528
|
+
width: size,
|
|
5529
|
+
height: size,
|
|
5530
|
+
viewBox: "0 0 24 24",
|
|
5531
|
+
fill: "none",
|
|
5532
|
+
stroke: color,
|
|
5533
|
+
strokeWidth: strokeWidth,
|
|
5534
|
+
strokeLinecap: "round",
|
|
5535
|
+
strokeLinejoin: "round"
|
|
5536
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5537
|
+
x1: "2",
|
|
5538
|
+
x2: "22",
|
|
5539
|
+
y1: "2",
|
|
5540
|
+
y2: "22"
|
|
5541
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5542
|
+
d: "M10.41 10.41a2 2 0 1 1-2.83-2.83"
|
|
5543
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5544
|
+
x1: "13.5",
|
|
5545
|
+
x2: "6",
|
|
5546
|
+
y1: "13.5",
|
|
5547
|
+
y2: "21"
|
|
5548
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5549
|
+
x1: "18",
|
|
5550
|
+
x2: "21",
|
|
5551
|
+
y1: "12",
|
|
5552
|
+
y2: "15"
|
|
5553
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5554
|
+
d: "M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"
|
|
5555
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5556
|
+
d: "M21 15V5a2 2 0 0 0-2-2H9"
|
|
5557
|
+
}));
|
|
5558
|
+
});
|
|
5559
|
+
ImageOff.displayName = "ImageOff";
|
|
5560
|
+
|
|
5561
|
+
var ImagePlay = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5562
|
+
var _b = _a.color,
|
|
5563
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5564
|
+
_c = _a.size,
|
|
5565
|
+
size = _c === void 0 ? 24 : _c,
|
|
5566
|
+
_d = _a.strokeWidth,
|
|
5567
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5568
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5569
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5570
|
+
ref: ref,
|
|
5571
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5572
|
+
width: size,
|
|
5573
|
+
height: size,
|
|
5574
|
+
viewBox: "0 0 24 24",
|
|
5575
|
+
fill: "none",
|
|
5576
|
+
stroke: color,
|
|
5577
|
+
strokeWidth: strokeWidth,
|
|
5578
|
+
strokeLinecap: "round",
|
|
5579
|
+
strokeLinejoin: "round"
|
|
5580
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5581
|
+
d: "M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"
|
|
5582
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5583
|
+
d: "M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"
|
|
5584
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5585
|
+
d: "m6 21 5-5"
|
|
5586
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5587
|
+
cx: "9",
|
|
5588
|
+
cy: "9",
|
|
5589
|
+
r: "2"
|
|
5590
|
+
}));
|
|
5591
|
+
});
|
|
5592
|
+
ImagePlay.displayName = "ImagePlay";
|
|
5593
|
+
|
|
5594
|
+
var ImagePlus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5595
|
+
var _b = _a.color,
|
|
5596
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5597
|
+
_c = _a.size,
|
|
5598
|
+
size = _c === void 0 ? 24 : _c,
|
|
5599
|
+
_d = _a.strokeWidth,
|
|
5600
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5601
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5602
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5603
|
+
ref: ref,
|
|
5604
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5605
|
+
width: size,
|
|
5606
|
+
height: size,
|
|
5607
|
+
viewBox: "0 0 24 24",
|
|
5608
|
+
fill: "none",
|
|
5609
|
+
stroke: color,
|
|
5610
|
+
strokeWidth: strokeWidth,
|
|
5611
|
+
strokeLinecap: "round",
|
|
5612
|
+
strokeLinejoin: "round"
|
|
5613
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5614
|
+
d: "M16 5h6"
|
|
5615
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5616
|
+
d: "M19 2v6"
|
|
5617
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5618
|
+
d: "M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"
|
|
5619
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5620
|
+
d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
|
|
5621
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5622
|
+
cx: "9",
|
|
5623
|
+
cy: "9",
|
|
5624
|
+
r: "2"
|
|
5625
|
+
}));
|
|
5626
|
+
});
|
|
5627
|
+
ImagePlus.displayName = "ImagePlus";
|
|
5628
|
+
|
|
5629
|
+
var ImageUp = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5630
|
+
var _b = _a.color,
|
|
5631
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5632
|
+
_c = _a.size,
|
|
5633
|
+
size = _c === void 0 ? 24 : _c,
|
|
5634
|
+
_d = _a.strokeWidth,
|
|
5635
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5636
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5637
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5638
|
+
ref: ref,
|
|
5639
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5640
|
+
width: size,
|
|
5641
|
+
height: size,
|
|
5642
|
+
viewBox: "0 0 24 24",
|
|
5643
|
+
fill: "none",
|
|
5644
|
+
stroke: color,
|
|
5645
|
+
strokeWidth: strokeWidth,
|
|
5646
|
+
strokeLinecap: "round",
|
|
5647
|
+
strokeLinejoin: "round"
|
|
5648
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5649
|
+
d: "M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"
|
|
5650
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5651
|
+
d: "m14 19.5 3-3 3 3"
|
|
5652
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5653
|
+
d: "M17 22v-5.5"
|
|
5654
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5655
|
+
cx: "9",
|
|
5656
|
+
cy: "9",
|
|
5657
|
+
r: "2"
|
|
5658
|
+
}));
|
|
5659
|
+
});
|
|
5660
|
+
ImageUp.displayName = "ImageUp";
|
|
5661
|
+
|
|
5662
|
+
var ImageScaleDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5663
|
+
var _b = _a.color,
|
|
5664
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5665
|
+
_c = _a.size,
|
|
5666
|
+
size = _c === void 0 ? 24 : _c,
|
|
5667
|
+
_d = _a.strokeWidth,
|
|
5668
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5669
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5670
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5671
|
+
ref: ref,
|
|
5672
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5673
|
+
width: size,
|
|
5674
|
+
height: size,
|
|
5675
|
+
viewBox: "0 0 24 24",
|
|
5676
|
+
fill: "none",
|
|
5677
|
+
stroke: color,
|
|
5678
|
+
strokeWidth: strokeWidth,
|
|
5679
|
+
strokeLinecap: "round",
|
|
5680
|
+
strokeLinejoin: "round"
|
|
5681
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5682
|
+
d: "M16 3h5v5"
|
|
5683
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5684
|
+
d: "M17 21h2a2 2 0 0 0 2-2"
|
|
5685
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5686
|
+
d: "M21 12v3"
|
|
5687
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5688
|
+
d: "m21 3-5 5"
|
|
5689
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5690
|
+
d: "M3 7V5a2 2 0 0 1 2-2"
|
|
5691
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5692
|
+
d: "m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"
|
|
5693
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5694
|
+
d: "M9 3h3"
|
|
5695
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
5696
|
+
x: "3",
|
|
5697
|
+
y: "11",
|
|
5698
|
+
width: "10",
|
|
5699
|
+
height: "10",
|
|
5700
|
+
rx: "1"
|
|
5701
|
+
}));
|
|
5702
|
+
});
|
|
5703
|
+
ImageScaleDash.displayName = "ImageScaleDash";
|
|
5704
|
+
|
|
5367
5705
|
var Apple = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5368
5706
|
var _b = _a.color,
|
|
5369
5707
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7727,6 +8065,35 @@ var Dollar = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
7727
8065
|
});
|
|
7728
8066
|
Dollar.displayName = "Dollar";
|
|
7729
8067
|
|
|
8068
|
+
var Euro = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
8069
|
+
var _b = _a.color,
|
|
8070
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8071
|
+
_c = _a.size,
|
|
8072
|
+
size = _c === void 0 ? 24 : _c,
|
|
8073
|
+
_d = _a.strokeWidth,
|
|
8074
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
8075
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
8076
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
8077
|
+
ref: ref,
|
|
8078
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8079
|
+
width: size,
|
|
8080
|
+
height: size,
|
|
8081
|
+
viewBox: "0 0 24 24",
|
|
8082
|
+
fill: "none",
|
|
8083
|
+
stroke: color,
|
|
8084
|
+
strokeWidth: strokeWidth,
|
|
8085
|
+
strokeLinecap: "round",
|
|
8086
|
+
strokeLinejoin: "round"
|
|
8087
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
8088
|
+
d: "M4 10h12"
|
|
8089
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
8090
|
+
d: "M4 14h9"
|
|
8091
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
8092
|
+
d: "M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"
|
|
8093
|
+
}));
|
|
8094
|
+
});
|
|
8095
|
+
Euro.displayName = "Euro";
|
|
8096
|
+
|
|
7730
8097
|
var Download = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
7731
8098
|
var _b = _a.color,
|
|
7732
8099
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -11151,4 +11518,4 @@ var ZapOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
11151
11518
|
});
|
|
11152
11519
|
ZapOff.displayName = "ZapOff";
|
|
11153
11520
|
|
|
11154
|
-
export { AArrowDown, AArrowUp, Accessibility, Airplane, AirplaneLandLeft, AirplaneLandRight, AirplaneMode, AirplaneModeOff, AirplaneSeat, AirplaneTakeOffLeft, AirplaneTakeOffRight, Airplay, Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Anchor, Aperture, AppWindow, AppWindowMac, Apple, Archive, ArchiveRestore, ArrowDown, ArrowDownBig, ArrowDownBigDash, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftBig, ArrowLeftBigDash, ArrowLeftCircle, ArrowRight, ArrowRightBig, ArrowRightBigDash, ArrowRightCircle, ArrowUp, ArrowUpBig, ArrowUpBigDash, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Award, BarChart, BarChart2, Battery, BatteryCharging, Bell, BellOff, Bluetooth, Book, BookOpen, Bookmark, Bot, BotOff, BotSquare, Box, Briefcase, Calendar, Camera, CameraOff, Cast, Check, CheckCircle, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chrome, Circle, Clipboard, Clock, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Cloudflare, Code, Codepen, Codesandbox, Coffee, Columns, Command, Compass, Cookie, Copy, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Credly, Crop, Crosshair, Database, Delete, Deno, Disc, Discord, Divide, DivideCircle, DivideSquare, Dollar, Download, DownloadCloud, Dribbble, Droplet, Edit, Edit2, Edit3, Email, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileMinus, FilePlus, FileText, Film, Filter, Flag, Folder, FolderMinus, FolderPlus, Framer, Frown, Gift, GitBranch, GitCommit, GitHub, GitLab, GitMerge, GitPullRequest, Globe, GoLang, Google, GraphStats, Grid, HTML, HardDrive, Hash, Headphones, Heart, HelpCircle, Hexagon, House, Image, Inbox, Info, Instagram, Italic, JavaScript, Key, Layers, Layout, LifeBuoy, Link, Link2, LinkedIn, List, Loader, Lock, LogIn, LogOut, Mail, Map, MapPin, Maximize, Maximize2, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, Moon, MoreHorizontal, MoreVertical, MousePointer, Move, Music, NPMJs, Navigation, Navigation2, NodeJs, Octagon, Package, Paperclip, Pause, PauseCircle, PayPal, PenTool, Percent, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Play, PlayCircle, Plus, PlusCircle, PlusSquare, Pocket, Power, Printer, Python, RSS, Radio, ReactJs, RefreshCcw, RefreshCw, Repeat, Rewind, RotateCcw, RotateCw, Save, Scissors, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, SkipBack, SkipForward, Slack, Slash, Sliders, Smartphone, Smile, SoundCloud, Sparkles, Sparkles2, Speaker, Spotify, Square, Star, StopCircle, Sun, Sunrise, Sunset, TV, Table, Tablet, Tag, TailwindCSS, Target, Terminal, TextDown, TextSize, TextUp, Thermometer, ThumbsDown, ThumbsUp, ToggleLeft, ToggleRight, Tool, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Twitch, Twitter, Type, TypeScript, Umbrella, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Video, VideoOff, Voicemail, Volume, Volume2, Volume3, VolumeX, WandSparkles, Watch, WhatsApp, Wifi, WifiOff, Wind, X, XCircle, XOctagon, XSquare, YouTube, Zap, ZapOff };
|
|
11521
|
+
export { AArrowDown, AArrowUp, Accessibility, Airplane, AirplaneLandLeft, AirplaneLandRight, AirplaneMode, AirplaneModeOff, AirplaneSeat, AirplaneTakeOffLeft, AirplaneTakeOffRight, Airplay, Alarm, AlarmCheck, AlarmMinus, AlarmOff, AlarmPlus, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, Anchor, Aperture, AppWindow, AppWindowMac, Apple, Archive, ArchiveRestore, ArrowDown, ArrowDownBig, ArrowDownBigDash, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftBig, ArrowLeftBigDash, ArrowLeftCircle, ArrowRight, ArrowRightBig, ArrowRightBigDash, ArrowRightCircle, ArrowUp, ArrowUpBig, ArrowUpBigDash, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Award, BarChart, BarChart2, Battery, BatteryCharging, Bell, BellOff, Bluetooth, Book, BookOpen, Bookmark, Bot, BotOff, BotSquare, Box, Briefcase, Calendar, Camera, CameraOff, Cast, Check, CheckCircle, CheckSquare, ChevronDown, ChevronDown2, ChevronLeft, ChevronLeft2, ChevronRight, ChevronRight2, ChevronUp, ChevronUp2, Chrome, Circle, Clipboard, Clock, Cloud, CloudDrizzle, CloudLightning, CloudOff, CloudRain, CloudSnow, Cloudflare, Code, Codepen, Codesandbox, Coffee, Columns, Command, Compass, Cookie, Copy, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Credly, Crop, Crosshair, Database, Delete, Deno, Disc, Discord, Divide, DivideCircle, DivideSquare, Dollar, Download, DownloadCloud, Dribbble, Droplet, DropletDouble, DropletOff, Edit, Edit2, Edit3, Email, Euro, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileMinus, FilePlus, FileText, Film, Filter, Flag, Folder, FolderMinus, FolderPlus, Framer, Frown, Gift, GitBranch, GitCommit, GitHub, GitLab, GitMerge, GitPullRequest, Globe, GoLang, Google, GraphStats, Grid, HTML, HardDrive, Hash, Headphones, Heart, HelpCircle, Hexagon, House, Image, ImageDown, ImageMinus, ImageOff, ImagePlay, ImagePlus, ImageScaleDash, ImageUp, Inbox, Info, Instagram, Italic, JavaScript, Key, Layers, Layout, LifeBuoy, Link, Link2, LinkedIn, List, Loader, Lock, LogIn, LogOut, Mail, Map, MapPin, Maximize, Maximize2, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, Moon, MoreHorizontal, MoreVertical, MousePointer, Move, Music, NPMJs, Navigation, Navigation2, NodeJs, Octagon, Package, Paperclip, Pause, PauseCircle, PayPal, PenTool, Percent, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, Play, PlayCircle, Plus, PlusCircle, PlusSquare, Pocket, Power, Printer, Python, RSS, Radio, ReactJs, RefreshCcw, RefreshCw, Repeat, Rewind, RotateCcw, RotateCw, Save, Scissors, Search, Send, Server, Settings, Share, Share2, Shield, ShieldOff, ShoppingBag, ShoppingCart, Shuffle, Sidebar, SkipBack, SkipForward, Slack, Slash, Sliders, Smartphone, Smile, SoundCloud, Sparkles, Sparkles2, Speaker, Spotify, Square, Star, StopCircle, Sun, Sunrise, Sunset, TV, Table, Tablet, Tag, TailwindCSS, Target, Terminal, TextDown, TextSize, TextUp, Thermometer, ThumbsDown, ThumbsUp, ToggleLeft, ToggleRight, Tool, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Twitch, Twitter, TwitterNew, Type, TypeScript, Umbrella, Underline, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Video, VideoOff, Voicemail, Volume, Volume2, Volume3, VolumeX, WandSparkles, Watch, WhatsApp, Wifi, WifiOff, Wind, X, XCircle, XOctagon, XSquare, YouTube, Zap, ZapOff };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"name": "@deemlol/next-icons",
|
|
6
6
|
"description": "An open-source icon library for React and Next.js that is lightweight, designed for simplicity and seamless integration. Each icon is designed on a 24x24 pixels grid.",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@babel/preset-env": "^7.29.0",
|
|
23
23
|
"@babel/preset-react": "^7.28.5",
|
|
24
24
|
"@rollup/plugin-babel": "^6.0.4",
|
|
25
|
-
"@typescript-eslint/parser": "^7.0.0",
|
|
26
25
|
"@types/react": "^19.2.14",
|
|
26
|
+
"@typescript-eslint/parser": "^7.0.0",
|
|
27
27
|
"eslint": "^8.57.1",
|
|
28
28
|
"eslint-config-airbnb": "^19.0.4",
|
|
29
29
|
"eslint-import-resolver-typescript": "^4.4.4",
|