@deemlol/next-icons 0.2.3 → 0.2.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/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/index.d.ts +10 -0
- package/build/index.js +343 -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;
|
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";
|
|
@@ -173,6 +175,13 @@ export { default as CameraOff } from "./icons/camera/CameraOff";
|
|
|
173
175
|
export { default as Crop } from "./icons/camera/Crop";
|
|
174
176
|
export { default as Film } from "./icons/camera/Film";
|
|
175
177
|
export { default as Image } from "./icons/camera/Image";
|
|
178
|
+
export { default as ImageDown } from "./icons/camera/ImageDown";
|
|
179
|
+
export { default as ImageMinus } from "./icons/camera/ImageMinus";
|
|
180
|
+
export { default as ImageOff } from "./icons/camera/ImageOff";
|
|
181
|
+
export { default as ImagePlay } from "./icons/camera/ImagePlay";
|
|
182
|
+
export { default as ImagePlus } from "./icons/camera/ImagePlus";
|
|
183
|
+
export { default as ImageUp } from "./icons/camera/ImageUp";
|
|
184
|
+
export { default as ImageScaleDash } from "./icons/camera/ImageScaleDash";
|
|
176
185
|
export { default as Apple } from "./icons/food/Apple";
|
|
177
186
|
export { default as Cookie } from "./icons/food/Cookie";
|
|
178
187
|
export { default as ArrowDown } from "./icons/arrow/ArrowDown";
|
|
@@ -249,6 +258,7 @@ export { default as Divide } from "./icons/divide/Divide";
|
|
|
249
258
|
export { default as DivideCircle } from "./icons/divide/DivideCircle";
|
|
250
259
|
export { default as DivideSquare } from "./icons/divide/DivideSquare";
|
|
251
260
|
export { default as Dollar } from "./icons/currency/Dollar";
|
|
261
|
+
export { default as Euro } from "./icons/currency/Euro";
|
|
252
262
|
export { default as Download } from "./icons/download/Download";
|
|
253
263
|
export { default as DownloadCloud } from "./icons/download/DownloadCloud";
|
|
254
264
|
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,
|
|
@@ -5364,6 +5420,263 @@ var Image = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5364
5420
|
});
|
|
5365
5421
|
Image.displayName = "Image";
|
|
5366
5422
|
|
|
5423
|
+
var ImageDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5424
|
+
var _b = _a.color,
|
|
5425
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5426
|
+
_c = _a.size,
|
|
5427
|
+
size = _c === void 0 ? 24 : _c,
|
|
5428
|
+
_d = _a.strokeWidth,
|
|
5429
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5430
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5431
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5432
|
+
ref: ref,
|
|
5433
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5434
|
+
width: size,
|
|
5435
|
+
height: size,
|
|
5436
|
+
viewBox: "0 0 24 24",
|
|
5437
|
+
fill: "none",
|
|
5438
|
+
stroke: color,
|
|
5439
|
+
strokeWidth: strokeWidth,
|
|
5440
|
+
strokeLinecap: "round",
|
|
5441
|
+
strokeLinejoin: "round"
|
|
5442
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5443
|
+
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"
|
|
5444
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5445
|
+
d: "m14 19 3 3v-5.5"
|
|
5446
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5447
|
+
d: "m17 22 3-3"
|
|
5448
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5449
|
+
cx: "9",
|
|
5450
|
+
cy: "9",
|
|
5451
|
+
r: "2"
|
|
5452
|
+
}));
|
|
5453
|
+
});
|
|
5454
|
+
ImageDown.displayName = "ImageDown";
|
|
5455
|
+
|
|
5456
|
+
var ImageMinus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5457
|
+
var _b = _a.color,
|
|
5458
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5459
|
+
_c = _a.size,
|
|
5460
|
+
size = _c === void 0 ? 24 : _c,
|
|
5461
|
+
_d = _a.strokeWidth,
|
|
5462
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5463
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5464
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5465
|
+
ref: ref,
|
|
5466
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5467
|
+
width: size,
|
|
5468
|
+
height: size,
|
|
5469
|
+
viewBox: "0 0 24 24",
|
|
5470
|
+
fill: "none",
|
|
5471
|
+
stroke: color,
|
|
5472
|
+
strokeWidth: strokeWidth,
|
|
5473
|
+
strokeLinecap: "round",
|
|
5474
|
+
strokeLinejoin: "round"
|
|
5475
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5476
|
+
d: "M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"
|
|
5477
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5478
|
+
x1: "16",
|
|
5479
|
+
x2: "22",
|
|
5480
|
+
y1: "5",
|
|
5481
|
+
y2: "5"
|
|
5482
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5483
|
+
cx: "9",
|
|
5484
|
+
cy: "9",
|
|
5485
|
+
r: "2"
|
|
5486
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5487
|
+
d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
|
|
5488
|
+
}));
|
|
5489
|
+
});
|
|
5490
|
+
ImageMinus.displayName = "ImageMinus";
|
|
5491
|
+
|
|
5492
|
+
var ImageOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5493
|
+
var _b = _a.color,
|
|
5494
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5495
|
+
_c = _a.size,
|
|
5496
|
+
size = _c === void 0 ? 24 : _c,
|
|
5497
|
+
_d = _a.strokeWidth,
|
|
5498
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5499
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5500
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5501
|
+
ref: ref,
|
|
5502
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5503
|
+
width: size,
|
|
5504
|
+
height: size,
|
|
5505
|
+
viewBox: "0 0 24 24",
|
|
5506
|
+
fill: "none",
|
|
5507
|
+
stroke: color,
|
|
5508
|
+
strokeWidth: strokeWidth,
|
|
5509
|
+
strokeLinecap: "round",
|
|
5510
|
+
strokeLinejoin: "round"
|
|
5511
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5512
|
+
x1: "2",
|
|
5513
|
+
x2: "22",
|
|
5514
|
+
y1: "2",
|
|
5515
|
+
y2: "22"
|
|
5516
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5517
|
+
d: "M10.41 10.41a2 2 0 1 1-2.83-2.83"
|
|
5518
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5519
|
+
x1: "13.5",
|
|
5520
|
+
x2: "6",
|
|
5521
|
+
y1: "13.5",
|
|
5522
|
+
y2: "21"
|
|
5523
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5524
|
+
x1: "18",
|
|
5525
|
+
x2: "21",
|
|
5526
|
+
y1: "12",
|
|
5527
|
+
y2: "15"
|
|
5528
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5529
|
+
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"
|
|
5530
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5531
|
+
d: "M21 15V5a2 2 0 0 0-2-2H9"
|
|
5532
|
+
}));
|
|
5533
|
+
});
|
|
5534
|
+
ImageOff.displayName = "ImageOff";
|
|
5535
|
+
|
|
5536
|
+
var ImagePlay = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5537
|
+
var _b = _a.color,
|
|
5538
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5539
|
+
_c = _a.size,
|
|
5540
|
+
size = _c === void 0 ? 24 : _c,
|
|
5541
|
+
_d = _a.strokeWidth,
|
|
5542
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5543
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5544
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5545
|
+
ref: ref,
|
|
5546
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5547
|
+
width: size,
|
|
5548
|
+
height: size,
|
|
5549
|
+
viewBox: "0 0 24 24",
|
|
5550
|
+
fill: "none",
|
|
5551
|
+
stroke: color,
|
|
5552
|
+
strokeWidth: strokeWidth,
|
|
5553
|
+
strokeLinecap: "round",
|
|
5554
|
+
strokeLinejoin: "round"
|
|
5555
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5556
|
+
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"
|
|
5557
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5558
|
+
d: "M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"
|
|
5559
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5560
|
+
d: "m6 21 5-5"
|
|
5561
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5562
|
+
cx: "9",
|
|
5563
|
+
cy: "9",
|
|
5564
|
+
r: "2"
|
|
5565
|
+
}));
|
|
5566
|
+
});
|
|
5567
|
+
ImagePlay.displayName = "ImagePlay";
|
|
5568
|
+
|
|
5569
|
+
var ImagePlus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5570
|
+
var _b = _a.color,
|
|
5571
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5572
|
+
_c = _a.size,
|
|
5573
|
+
size = _c === void 0 ? 24 : _c,
|
|
5574
|
+
_d = _a.strokeWidth,
|
|
5575
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5576
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5577
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5578
|
+
ref: ref,
|
|
5579
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5580
|
+
width: size,
|
|
5581
|
+
height: size,
|
|
5582
|
+
viewBox: "0 0 24 24",
|
|
5583
|
+
fill: "none",
|
|
5584
|
+
stroke: color,
|
|
5585
|
+
strokeWidth: strokeWidth,
|
|
5586
|
+
strokeLinecap: "round",
|
|
5587
|
+
strokeLinejoin: "round"
|
|
5588
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5589
|
+
d: "M16 5h6"
|
|
5590
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5591
|
+
d: "M19 2v6"
|
|
5592
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5593
|
+
d: "M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"
|
|
5594
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5595
|
+
d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
|
|
5596
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5597
|
+
cx: "9",
|
|
5598
|
+
cy: "9",
|
|
5599
|
+
r: "2"
|
|
5600
|
+
}));
|
|
5601
|
+
});
|
|
5602
|
+
ImagePlus.displayName = "ImagePlus";
|
|
5603
|
+
|
|
5604
|
+
var ImageUp = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5605
|
+
var _b = _a.color,
|
|
5606
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5607
|
+
_c = _a.size,
|
|
5608
|
+
size = _c === void 0 ? 24 : _c,
|
|
5609
|
+
_d = _a.strokeWidth,
|
|
5610
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5611
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5612
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5613
|
+
ref: ref,
|
|
5614
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5615
|
+
width: size,
|
|
5616
|
+
height: size,
|
|
5617
|
+
viewBox: "0 0 24 24",
|
|
5618
|
+
fill: "none",
|
|
5619
|
+
stroke: color,
|
|
5620
|
+
strokeWidth: strokeWidth,
|
|
5621
|
+
strokeLinecap: "round",
|
|
5622
|
+
strokeLinejoin: "round"
|
|
5623
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5624
|
+
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"
|
|
5625
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5626
|
+
d: "m14 19.5 3-3 3 3"
|
|
5627
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5628
|
+
d: "M17 22v-5.5"
|
|
5629
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
5630
|
+
cx: "9",
|
|
5631
|
+
cy: "9",
|
|
5632
|
+
r: "2"
|
|
5633
|
+
}));
|
|
5634
|
+
});
|
|
5635
|
+
ImageUp.displayName = "ImageUp";
|
|
5636
|
+
|
|
5637
|
+
var ImageScaleDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5638
|
+
var _b = _a.color,
|
|
5639
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5640
|
+
_c = _a.size,
|
|
5641
|
+
size = _c === void 0 ? 24 : _c,
|
|
5642
|
+
_d = _a.strokeWidth,
|
|
5643
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5644
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5645
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5646
|
+
ref: ref,
|
|
5647
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5648
|
+
width: size,
|
|
5649
|
+
height: size,
|
|
5650
|
+
viewBox: "0 0 24 24",
|
|
5651
|
+
fill: "none",
|
|
5652
|
+
stroke: color,
|
|
5653
|
+
strokeWidth: strokeWidth,
|
|
5654
|
+
strokeLinecap: "round",
|
|
5655
|
+
strokeLinejoin: "round"
|
|
5656
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5657
|
+
d: "M16 3h5v5"
|
|
5658
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5659
|
+
d: "M17 21h2a2 2 0 0 0 2-2"
|
|
5660
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5661
|
+
d: "M21 12v3"
|
|
5662
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5663
|
+
d: "m21 3-5 5"
|
|
5664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5665
|
+
d: "M3 7V5a2 2 0 0 1 2-2"
|
|
5666
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5667
|
+
d: "m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"
|
|
5668
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5669
|
+
d: "M9 3h3"
|
|
5670
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
5671
|
+
x: "3",
|
|
5672
|
+
y: "11",
|
|
5673
|
+
width: "10",
|
|
5674
|
+
height: "10",
|
|
5675
|
+
rx: "1"
|
|
5676
|
+
}));
|
|
5677
|
+
});
|
|
5678
|
+
ImageScaleDash.displayName = "ImageScaleDash";
|
|
5679
|
+
|
|
5367
5680
|
var Apple = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5368
5681
|
var _b = _a.color,
|
|
5369
5682
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7727,6 +8040,35 @@ var Dollar = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
7727
8040
|
});
|
|
7728
8041
|
Dollar.displayName = "Dollar";
|
|
7729
8042
|
|
|
8043
|
+
var Euro = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
8044
|
+
var _b = _a.color,
|
|
8045
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8046
|
+
_c = _a.size,
|
|
8047
|
+
size = _c === void 0 ? 24 : _c,
|
|
8048
|
+
_d = _a.strokeWidth,
|
|
8049
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
8050
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
8051
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
8052
|
+
ref: ref,
|
|
8053
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8054
|
+
width: size,
|
|
8055
|
+
height: size,
|
|
8056
|
+
viewBox: "0 0 24 24",
|
|
8057
|
+
fill: "none",
|
|
8058
|
+
stroke: color,
|
|
8059
|
+
strokeWidth: strokeWidth,
|
|
8060
|
+
strokeLinecap: "round",
|
|
8061
|
+
strokeLinejoin: "round"
|
|
8062
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
8063
|
+
d: "M4 10h12"
|
|
8064
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
8065
|
+
d: "M4 14h9"
|
|
8066
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
8067
|
+
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"
|
|
8068
|
+
}));
|
|
8069
|
+
});
|
|
8070
|
+
Euro.displayName = "Euro";
|
|
8071
|
+
|
|
7730
8072
|
var Download = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
7731
8073
|
var _b = _a.color,
|
|
7732
8074
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -11151,4 +11493,4 @@ var ZapOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
11151
11493
|
});
|
|
11152
11494
|
ZapOff.displayName = "ZapOff";
|
|
11153
11495
|
|
|
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 };
|
|
11496
|
+
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, 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.4",
|
|
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",
|