@deemlol/next-icons 0.2.2 → 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/README.md +1 -1
- package/build/icons/arrow/ArrowDownBig.d.ts +8 -0
- package/build/icons/arrow/ArrowDownBigDash.d.ts +8 -0
- package/build/icons/arrow/ArrowLeftBig.d.ts +8 -0
- package/build/icons/arrow/ArrowLeftBigDash.d.ts +8 -0
- package/build/icons/arrow/ArrowRightBig.d.ts +8 -0
- package/build/icons/arrow/ArrowRightBigDash.d.ts +8 -0
- package/build/icons/arrow/ArrowUpBig.d.ts +8 -0
- package/build/icons/arrow/ArrowUpBigDash.d.ts +8 -0
- 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/text/AArrowDown.d.ts +8 -0
- package/build/icons/text/AArrowUp.d.ts +8 -0
- package/build/index.d.ts +20 -0
- package/build/index.js +703 -91
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ export default function Question() {
|
|
|
57
57
|
All our icons can be also configured with props.
|
|
58
58
|
|
|
59
59
|
```javascript
|
|
60
|
-
<Cookie size={40} color="#FF0000" strokeWidth={
|
|
60
|
+
<Cookie size={40} color="#FF0000" strokeWidth={1.5} className="flex items-center" />
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
## Support
|
|
@@ -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 ArrowDownBig: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowDownBig;
|
|
@@ -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 ArrowDownBigDash: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowDownBigDash;
|
|
@@ -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 ArrowLeftBig: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowLeftBig;
|
|
@@ -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 ArrowLeftBigDash: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowLeftBigDash;
|
|
@@ -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 ArrowRightBig: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowRightBig;
|
|
@@ -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 ArrowRightBigDash: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowRightBigDash;
|
|
@@ -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 ArrowUpBig: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowUpBig;
|
|
@@ -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 ArrowUpBigDash: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default ArrowUpBigDash;
|
|
@@ -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 AArrowDown: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AArrowDown;
|
|
@@ -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 AArrowUp: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
8
|
+
export default AArrowUp;
|
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";
|
|
@@ -149,6 +151,8 @@ export { default as Clock } from "./icons/alarm/Clock";
|
|
|
149
151
|
export { default as AlertCircle } from "./icons/alert/AlertCircle";
|
|
150
152
|
export { default as AlertOctagon } from "./icons/alert/AlertOctagon";
|
|
151
153
|
export { default as AlertTriangle } from "./icons/alert/AlertTriangle";
|
|
154
|
+
export { default as AArrowUp } from "./icons/text/AArrowUp";
|
|
155
|
+
export { default as AArrowDown } from "./icons/text/AArrowDown";
|
|
152
156
|
export { default as AlignCenter } from "./icons/text/AlignCenter";
|
|
153
157
|
export { default as AlignJustify } from "./icons/text/AlignJustify";
|
|
154
158
|
export { default as AlignLeft } from "./icons/text/AlignLeft";
|
|
@@ -171,6 +175,13 @@ export { default as CameraOff } from "./icons/camera/CameraOff";
|
|
|
171
175
|
export { default as Crop } from "./icons/camera/Crop";
|
|
172
176
|
export { default as Film } from "./icons/camera/Film";
|
|
173
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";
|
|
174
185
|
export { default as Apple } from "./icons/food/Apple";
|
|
175
186
|
export { default as Cookie } from "./icons/food/Cookie";
|
|
176
187
|
export { default as ArrowDown } from "./icons/arrow/ArrowDown";
|
|
@@ -201,6 +212,14 @@ export { default as CornerRightDown } from "./icons/arrow/CornerRightDown";
|
|
|
201
212
|
export { default as CornerRightUp } from "./icons/arrow/CornerRightUp";
|
|
202
213
|
export { default as CornerUpLeft } from "./icons/arrow/CornerUpLeft";
|
|
203
214
|
export { default as CornerUpRight } from "./icons/arrow/CornerUpRight";
|
|
215
|
+
export { default as ArrowDownBig } from "./icons/arrow/ArrowDownBig";
|
|
216
|
+
export { default as ArrowDownBigDash } from "./icons/arrow/ArrowDownBigDash";
|
|
217
|
+
export { default as ArrowUpBig } from "./icons/arrow/ArrowUpBig";
|
|
218
|
+
export { default as ArrowUpBigDash } from "./icons/arrow/ArrowUpBigDash";
|
|
219
|
+
export { default as ArrowRightBig } from "./icons/arrow/ArrowRightBig";
|
|
220
|
+
export { default as ArrowRightBigDash } from "./icons/arrow/ArrowRightBigDash";
|
|
221
|
+
export { default as ArrowLeftBig } from "./icons/arrow/ArrowLeftBig";
|
|
222
|
+
export { default as ArrowLeftBigDash } from "./icons/arrow/ArrowLeftBigDash";
|
|
204
223
|
export { default as Battery } from "./icons/battery/Battery";
|
|
205
224
|
export { default as BatteryCharging } from "./icons/battery/BatteryCharging";
|
|
206
225
|
export { default as Bell } from "./icons/bell/Bell";
|
|
@@ -239,6 +258,7 @@ export { default as Divide } from "./icons/divide/Divide";
|
|
|
239
258
|
export { default as DivideCircle } from "./icons/divide/DivideCircle";
|
|
240
259
|
export { default as DivideSquare } from "./icons/divide/DivideSquare";
|
|
241
260
|
export { default as Dollar } from "./icons/currency/Dollar";
|
|
261
|
+
export { default as Euro } from "./icons/currency/Euro";
|
|
242
262
|
export { default as Download } from "./icons/download/Download";
|
|
243
263
|
export { default as DownloadCloud } from "./icons/download/DownloadCloud";
|
|
244
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,
|
|
@@ -4499,6 +4555,68 @@ var AlertTriangle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
4499
4555
|
});
|
|
4500
4556
|
AlertTriangle.displayName = "AlertTriangle";
|
|
4501
4557
|
|
|
4558
|
+
var AArrowUp = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4559
|
+
var _b = _a.color,
|
|
4560
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4561
|
+
_c = _a.size,
|
|
4562
|
+
size = _c === void 0 ? 24 : _c,
|
|
4563
|
+
_d = _a.strokeWidth,
|
|
4564
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4565
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4566
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4567
|
+
ref: ref,
|
|
4568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4569
|
+
width: size,
|
|
4570
|
+
height: size,
|
|
4571
|
+
viewBox: "0 0 24 24",
|
|
4572
|
+
fill: "none",
|
|
4573
|
+
stroke: color,
|
|
4574
|
+
strokeWidth: strokeWidth,
|
|
4575
|
+
strokeLinecap: "round",
|
|
4576
|
+
strokeLinejoin: "round"
|
|
4577
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4578
|
+
d: "m14 11 4-4 4 4"
|
|
4579
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4580
|
+
d: "M18 16V7"
|
|
4581
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4582
|
+
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"
|
|
4583
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4584
|
+
d: "M3.304 13h6.392"
|
|
4585
|
+
}));
|
|
4586
|
+
});
|
|
4587
|
+
AArrowUp.displayName = "AArrowUp";
|
|
4588
|
+
|
|
4589
|
+
var AArrowDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4590
|
+
var _b = _a.color,
|
|
4591
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4592
|
+
_c = _a.size,
|
|
4593
|
+
size = _c === void 0 ? 24 : _c,
|
|
4594
|
+
_d = _a.strokeWidth,
|
|
4595
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4596
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4597
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4598
|
+
ref: ref,
|
|
4599
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4600
|
+
width: size,
|
|
4601
|
+
height: size,
|
|
4602
|
+
viewBox: "0 0 24 24",
|
|
4603
|
+
fill: "none",
|
|
4604
|
+
stroke: color,
|
|
4605
|
+
strokeWidth: strokeWidth,
|
|
4606
|
+
strokeLinecap: "round",
|
|
4607
|
+
strokeLinejoin: "round"
|
|
4608
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4609
|
+
d: "m14 12 4 4 4-4"
|
|
4610
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4611
|
+
d: "M18 16V7"
|
|
4612
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4613
|
+
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"
|
|
4614
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4615
|
+
d: "M3.304 13h6.392"
|
|
4616
|
+
}));
|
|
4617
|
+
});
|
|
4618
|
+
AArrowDown.displayName = "AArrowDown";
|
|
4619
|
+
|
|
4502
4620
|
var AlignCenter = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4503
4621
|
var _b = _a.color,
|
|
4504
4622
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -5302,7 +5420,7 @@ var Image = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5302
5420
|
});
|
|
5303
5421
|
Image.displayName = "Image";
|
|
5304
5422
|
|
|
5305
|
-
var
|
|
5423
|
+
var ImageDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5306
5424
|
var _b = _a.color,
|
|
5307
5425
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5308
5426
|
_c = _a.size,
|
|
@@ -5322,14 +5440,20 @@ var Apple = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5322
5440
|
strokeLinecap: "round",
|
|
5323
5441
|
strokeLinejoin: "round"
|
|
5324
5442
|
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5325
|
-
d: "
|
|
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"
|
|
5326
5444
|
}), /*#__PURE__*/React.createElement("path", {
|
|
5327
|
-
d: "
|
|
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"
|
|
5328
5452
|
}));
|
|
5329
5453
|
});
|
|
5330
|
-
|
|
5454
|
+
ImageDown.displayName = "ImageDown";
|
|
5331
5455
|
|
|
5332
|
-
var
|
|
5456
|
+
var ImageMinus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5333
5457
|
var _b = _a.color,
|
|
5334
5458
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5335
5459
|
_c = _a.size,
|
|
@@ -5349,22 +5473,23 @@ var Cookie = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5349
5473
|
strokeLinecap: "round",
|
|
5350
5474
|
strokeLinejoin: "round"
|
|
5351
5475
|
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5352
|
-
d: "
|
|
5353
|
-
}), /*#__PURE__*/React.createElement("
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
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"
|
|
5361
5486
|
}), /*#__PURE__*/React.createElement("path", {
|
|
5362
|
-
d: "
|
|
5487
|
+
d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
|
|
5363
5488
|
}));
|
|
5364
5489
|
});
|
|
5365
|
-
|
|
5490
|
+
ImageMinus.displayName = "ImageMinus";
|
|
5366
5491
|
|
|
5367
|
-
var
|
|
5492
|
+
var ImageOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5368
5493
|
var _b = _a.color,
|
|
5369
5494
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5370
5495
|
_c = _a.size,
|
|
@@ -5384,17 +5509,31 @@ var ArrowDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5384
5509
|
strokeLinecap: "round",
|
|
5385
5510
|
strokeLinejoin: "round"
|
|
5386
5511
|
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5387
|
-
x1: "
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
y2: "
|
|
5391
|
-
}), /*#__PURE__*/React.createElement("
|
|
5392
|
-
|
|
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"
|
|
5393
5532
|
}));
|
|
5394
5533
|
});
|
|
5395
|
-
|
|
5534
|
+
ImageOff.displayName = "ImageOff";
|
|
5396
5535
|
|
|
5397
|
-
var
|
|
5536
|
+
var ImagePlay = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5398
5537
|
var _b = _a.color,
|
|
5399
5538
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5400
5539
|
_c = _a.size,
|
|
@@ -5413,22 +5552,21 @@ var ArrowDownCircle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5413
5552
|
strokeWidth: strokeWidth,
|
|
5414
5553
|
strokeLinecap: "round",
|
|
5415
5554
|
strokeLinejoin: "round"
|
|
5416
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
}), /*#__PURE__*/React.createElement("
|
|
5421
|
-
|
|
5422
|
-
}), /*#__PURE__*/React.createElement("
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
y2: "16"
|
|
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"
|
|
5427
5565
|
}));
|
|
5428
5566
|
});
|
|
5429
|
-
|
|
5567
|
+
ImagePlay.displayName = "ImagePlay";
|
|
5430
5568
|
|
|
5431
|
-
var
|
|
5569
|
+
var ImagePlus = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5432
5570
|
var _b = _a.color,
|
|
5433
5571
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5434
5572
|
_c = _a.size,
|
|
@@ -5447,18 +5585,23 @@ var ArrowDownLeft = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5447
5585
|
strokeWidth: strokeWidth,
|
|
5448
5586
|
strokeLinecap: "round",
|
|
5449
5587
|
strokeLinejoin: "round"
|
|
5450
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
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"
|
|
5457
5600
|
}));
|
|
5458
5601
|
});
|
|
5459
|
-
|
|
5602
|
+
ImagePlus.displayName = "ImagePlus";
|
|
5460
5603
|
|
|
5461
|
-
var
|
|
5604
|
+
var ImageUp = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5462
5605
|
var _b = _a.color,
|
|
5463
5606
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5464
5607
|
_c = _a.size,
|
|
@@ -5477,18 +5620,21 @@ var ArrowDownRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5477
5620
|
strokeWidth: strokeWidth,
|
|
5478
5621
|
strokeLinecap: "round",
|
|
5479
5622
|
strokeLinejoin: "round"
|
|
5480
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
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"
|
|
5487
5633
|
}));
|
|
5488
5634
|
});
|
|
5489
|
-
|
|
5635
|
+
ImageUp.displayName = "ImageUp";
|
|
5490
5636
|
|
|
5491
|
-
var
|
|
5637
|
+
var ImageScaleDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5492
5638
|
var _b = _a.color,
|
|
5493
5639
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5494
5640
|
_c = _a.size,
|
|
@@ -5507,18 +5653,31 @@ var ArrowLeft = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5507
5653
|
strokeWidth: strokeWidth,
|
|
5508
5654
|
strokeLinecap: "round",
|
|
5509
5655
|
strokeLinejoin: "round"
|
|
5510
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
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"
|
|
5517
5676
|
}));
|
|
5518
5677
|
});
|
|
5519
|
-
|
|
5678
|
+
ImageScaleDash.displayName = "ImageScaleDash";
|
|
5520
5679
|
|
|
5521
|
-
var
|
|
5680
|
+
var Apple = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5522
5681
|
var _b = _a.color,
|
|
5523
5682
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5524
5683
|
_c = _a.size,
|
|
@@ -5537,22 +5696,15 @@ var ArrowLeftCircle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5537
5696
|
strokeWidth: strokeWidth,
|
|
5538
5697
|
strokeLinecap: "round",
|
|
5539
5698
|
strokeLinejoin: "round"
|
|
5540
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5545
|
-
points: "12 8 8 12 12 16"
|
|
5546
|
-
}), /*#__PURE__*/React.createElement("line", {
|
|
5547
|
-
x1: "16",
|
|
5548
|
-
y1: "12",
|
|
5549
|
-
x2: "8",
|
|
5550
|
-
y2: "12"
|
|
5699
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5700
|
+
d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z"
|
|
5701
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5702
|
+
d: "M10 2c1 .5 2 2 2 5"
|
|
5551
5703
|
}));
|
|
5552
5704
|
});
|
|
5553
|
-
|
|
5705
|
+
Apple.displayName = "Apple";
|
|
5554
5706
|
|
|
5555
|
-
var
|
|
5707
|
+
var Cookie = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5556
5708
|
var _b = _a.color,
|
|
5557
5709
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5558
5710
|
_c = _a.size,
|
|
@@ -5571,18 +5723,241 @@ var ArrowRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
5571
5723
|
strokeWidth: strokeWidth,
|
|
5572
5724
|
strokeLinecap: "round",
|
|
5573
5725
|
strokeLinejoin: "round"
|
|
5574
|
-
}, rest), /*#__PURE__*/React.createElement("
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
})
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5726
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
5727
|
+
d: "M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"
|
|
5728
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5729
|
+
d: "M8.5 8.5v.01"
|
|
5730
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5731
|
+
d: "M16 15.5v.01"
|
|
5732
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5733
|
+
d: "M12 12v.01"
|
|
5734
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5735
|
+
d: "M11 17v.01"
|
|
5736
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
5737
|
+
d: "M7 14v.01"
|
|
5738
|
+
}));
|
|
5739
|
+
});
|
|
5740
|
+
Cookie.displayName = "Cookie";
|
|
5741
|
+
|
|
5742
|
+
var ArrowDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5743
|
+
var _b = _a.color,
|
|
5744
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5745
|
+
_c = _a.size,
|
|
5746
|
+
size = _c === void 0 ? 24 : _c,
|
|
5747
|
+
_d = _a.strokeWidth,
|
|
5748
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5749
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5750
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5751
|
+
ref: ref,
|
|
5752
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5753
|
+
width: size,
|
|
5754
|
+
height: size,
|
|
5755
|
+
viewBox: "0 0 24 24",
|
|
5756
|
+
fill: "none",
|
|
5757
|
+
stroke: color,
|
|
5758
|
+
strokeWidth: strokeWidth,
|
|
5759
|
+
strokeLinecap: "round",
|
|
5760
|
+
strokeLinejoin: "round"
|
|
5761
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5762
|
+
x1: "12",
|
|
5763
|
+
y1: "5",
|
|
5764
|
+
x2: "12",
|
|
5765
|
+
y2: "19"
|
|
5766
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5767
|
+
points: "19 12 12 19 5 12"
|
|
5768
|
+
}));
|
|
5769
|
+
});
|
|
5770
|
+
ArrowDown.displayName = "ArrowDown";
|
|
5771
|
+
|
|
5772
|
+
var ArrowDownCircle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5773
|
+
var _b = _a.color,
|
|
5774
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5775
|
+
_c = _a.size,
|
|
5776
|
+
size = _c === void 0 ? 24 : _c,
|
|
5777
|
+
_d = _a.strokeWidth,
|
|
5778
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5779
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5780
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5781
|
+
ref: ref,
|
|
5782
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5783
|
+
width: size,
|
|
5784
|
+
height: size,
|
|
5785
|
+
viewBox: "0 0 24 24",
|
|
5786
|
+
fill: "none",
|
|
5787
|
+
stroke: color,
|
|
5788
|
+
strokeWidth: strokeWidth,
|
|
5789
|
+
strokeLinecap: "round",
|
|
5790
|
+
strokeLinejoin: "round"
|
|
5791
|
+
}, rest), /*#__PURE__*/React.createElement("circle", {
|
|
5792
|
+
cx: "12",
|
|
5793
|
+
cy: "12",
|
|
5794
|
+
r: "10"
|
|
5795
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5796
|
+
points: "8 12 12 16 16 12"
|
|
5797
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5798
|
+
x1: "12",
|
|
5799
|
+
y1: "8",
|
|
5800
|
+
x2: "12",
|
|
5801
|
+
y2: "16"
|
|
5802
|
+
}));
|
|
5803
|
+
});
|
|
5804
|
+
ArrowDownCircle.displayName = "ArrowDownCircle";
|
|
5805
|
+
|
|
5806
|
+
var ArrowDownLeft = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5807
|
+
var _b = _a.color,
|
|
5808
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5809
|
+
_c = _a.size,
|
|
5810
|
+
size = _c === void 0 ? 24 : _c,
|
|
5811
|
+
_d = _a.strokeWidth,
|
|
5812
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5813
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5814
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5815
|
+
ref: ref,
|
|
5816
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5817
|
+
width: size,
|
|
5818
|
+
height: size,
|
|
5819
|
+
viewBox: "0 0 24 24",
|
|
5820
|
+
fill: "none",
|
|
5821
|
+
stroke: color,
|
|
5822
|
+
strokeWidth: strokeWidth,
|
|
5823
|
+
strokeLinecap: "round",
|
|
5824
|
+
strokeLinejoin: "round"
|
|
5825
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5826
|
+
x1: "17",
|
|
5827
|
+
y1: "7",
|
|
5828
|
+
x2: "7",
|
|
5829
|
+
y2: "17"
|
|
5830
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5831
|
+
points: "17 17 7 17 7 7"
|
|
5832
|
+
}));
|
|
5833
|
+
});
|
|
5834
|
+
ArrowDownLeft.displayName = "ArrowDownLeft";
|
|
5835
|
+
|
|
5836
|
+
var ArrowDownRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5837
|
+
var _b = _a.color,
|
|
5838
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5839
|
+
_c = _a.size,
|
|
5840
|
+
size = _c === void 0 ? 24 : _c,
|
|
5841
|
+
_d = _a.strokeWidth,
|
|
5842
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5843
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5844
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5845
|
+
ref: ref,
|
|
5846
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5847
|
+
width: size,
|
|
5848
|
+
height: size,
|
|
5849
|
+
viewBox: "0 0 24 24",
|
|
5850
|
+
fill: "none",
|
|
5851
|
+
stroke: color,
|
|
5852
|
+
strokeWidth: strokeWidth,
|
|
5853
|
+
strokeLinecap: "round",
|
|
5854
|
+
strokeLinejoin: "round"
|
|
5855
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5856
|
+
x1: "7",
|
|
5857
|
+
y1: "7",
|
|
5858
|
+
x2: "17",
|
|
5859
|
+
y2: "17"
|
|
5860
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5861
|
+
points: "17 7 17 17 7 17"
|
|
5862
|
+
}));
|
|
5863
|
+
});
|
|
5864
|
+
ArrowDownRight.displayName = "ArrowDownRight";
|
|
5865
|
+
|
|
5866
|
+
var ArrowLeft = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5867
|
+
var _b = _a.color,
|
|
5868
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5869
|
+
_c = _a.size,
|
|
5870
|
+
size = _c === void 0 ? 24 : _c,
|
|
5871
|
+
_d = _a.strokeWidth,
|
|
5872
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5873
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5874
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5875
|
+
ref: ref,
|
|
5876
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5877
|
+
width: size,
|
|
5878
|
+
height: size,
|
|
5879
|
+
viewBox: "0 0 24 24",
|
|
5880
|
+
fill: "none",
|
|
5881
|
+
stroke: color,
|
|
5882
|
+
strokeWidth: strokeWidth,
|
|
5883
|
+
strokeLinecap: "round",
|
|
5884
|
+
strokeLinejoin: "round"
|
|
5885
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5886
|
+
x1: "19",
|
|
5887
|
+
y1: "12",
|
|
5888
|
+
x2: "5",
|
|
5889
|
+
y2: "12"
|
|
5890
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5891
|
+
points: "12 19 5 12 12 5"
|
|
5892
|
+
}));
|
|
5893
|
+
});
|
|
5894
|
+
ArrowLeft.displayName = "ArrowLeft";
|
|
5895
|
+
|
|
5896
|
+
var ArrowLeftCircle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5897
|
+
var _b = _a.color,
|
|
5898
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5899
|
+
_c = _a.size,
|
|
5900
|
+
size = _c === void 0 ? 24 : _c,
|
|
5901
|
+
_d = _a.strokeWidth,
|
|
5902
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5903
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5904
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5905
|
+
ref: ref,
|
|
5906
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5907
|
+
width: size,
|
|
5908
|
+
height: size,
|
|
5909
|
+
viewBox: "0 0 24 24",
|
|
5910
|
+
fill: "none",
|
|
5911
|
+
stroke: color,
|
|
5912
|
+
strokeWidth: strokeWidth,
|
|
5913
|
+
strokeLinecap: "round",
|
|
5914
|
+
strokeLinejoin: "round"
|
|
5915
|
+
}, rest), /*#__PURE__*/React.createElement("circle", {
|
|
5916
|
+
cx: "12",
|
|
5917
|
+
cy: "12",
|
|
5918
|
+
r: "10"
|
|
5919
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5920
|
+
points: "12 8 8 12 12 16"
|
|
5921
|
+
}), /*#__PURE__*/React.createElement("line", {
|
|
5922
|
+
x1: "16",
|
|
5923
|
+
y1: "12",
|
|
5924
|
+
x2: "8",
|
|
5925
|
+
y2: "12"
|
|
5926
|
+
}));
|
|
5927
|
+
});
|
|
5928
|
+
ArrowLeftCircle.displayName = "ArrowLeftCircle";
|
|
5929
|
+
|
|
5930
|
+
var ArrowRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5931
|
+
var _b = _a.color,
|
|
5932
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5933
|
+
_c = _a.size,
|
|
5934
|
+
size = _c === void 0 ? 24 : _c,
|
|
5935
|
+
_d = _a.strokeWidth,
|
|
5936
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
5937
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
5938
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
5939
|
+
ref: ref,
|
|
5940
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5941
|
+
width: size,
|
|
5942
|
+
height: size,
|
|
5943
|
+
viewBox: "0 0 24 24",
|
|
5944
|
+
fill: "none",
|
|
5945
|
+
stroke: color,
|
|
5946
|
+
strokeWidth: strokeWidth,
|
|
5947
|
+
strokeLinecap: "round",
|
|
5948
|
+
strokeLinejoin: "round"
|
|
5949
|
+
}, rest), /*#__PURE__*/React.createElement("line", {
|
|
5950
|
+
x1: "5",
|
|
5951
|
+
y1: "12",
|
|
5952
|
+
x2: "19",
|
|
5953
|
+
y2: "12"
|
|
5954
|
+
}), /*#__PURE__*/React.createElement("polyline", {
|
|
5955
|
+
points: "12 5 19 12 12 19"
|
|
5956
|
+
}));
|
|
5957
|
+
});
|
|
5958
|
+
ArrowRight.displayName = "ArrowRight";
|
|
5959
|
+
|
|
5960
|
+
var ArrowRightCircle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
5586
5961
|
var _b = _a.color,
|
|
5587
5962
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5588
5963
|
_c = _a.size,
|
|
@@ -6164,6 +6539,214 @@ var CornerUpRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
6164
6539
|
});
|
|
6165
6540
|
CornerUpRight.displayName = "CornerUpRight";
|
|
6166
6541
|
|
|
6542
|
+
var ArrowDownBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6543
|
+
var _b = _a.color,
|
|
6544
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6545
|
+
_c = _a.size,
|
|
6546
|
+
size = _c === void 0 ? 24 : _c,
|
|
6547
|
+
_d = _a.strokeWidth,
|
|
6548
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6549
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6550
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6551
|
+
ref: ref,
|
|
6552
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6553
|
+
width: size,
|
|
6554
|
+
height: size,
|
|
6555
|
+
viewBox: "0 0 24 24",
|
|
6556
|
+
fill: "none",
|
|
6557
|
+
stroke: color,
|
|
6558
|
+
strokeWidth: strokeWidth,
|
|
6559
|
+
strokeLinecap: "round",
|
|
6560
|
+
strokeLinejoin: "round"
|
|
6561
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6562
|
+
d: "M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"
|
|
6563
|
+
}));
|
|
6564
|
+
});
|
|
6565
|
+
ArrowDownBig.displayName = "ArrowDownBig";
|
|
6566
|
+
|
|
6567
|
+
var ArrowDownBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6568
|
+
var _b = _a.color,
|
|
6569
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6570
|
+
_c = _a.size,
|
|
6571
|
+
size = _c === void 0 ? 24 : _c,
|
|
6572
|
+
_d = _a.strokeWidth,
|
|
6573
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6574
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6575
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6576
|
+
ref: ref,
|
|
6577
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6578
|
+
width: size,
|
|
6579
|
+
height: size,
|
|
6580
|
+
viewBox: "0 0 24 24",
|
|
6581
|
+
fill: "none",
|
|
6582
|
+
stroke: color,
|
|
6583
|
+
strokeWidth: strokeWidth,
|
|
6584
|
+
strokeLinecap: "round",
|
|
6585
|
+
strokeLinejoin: "round"
|
|
6586
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6587
|
+
d: "M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"
|
|
6588
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6589
|
+
d: "M9 4h6"
|
|
6590
|
+
}));
|
|
6591
|
+
});
|
|
6592
|
+
ArrowDownBigDash.displayName = "ArrowDownBigDash";
|
|
6593
|
+
|
|
6594
|
+
var ArrowUpBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6595
|
+
var _b = _a.color,
|
|
6596
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6597
|
+
_c = _a.size,
|
|
6598
|
+
size = _c === void 0 ? 24 : _c,
|
|
6599
|
+
_d = _a.strokeWidth,
|
|
6600
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6601
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6602
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6603
|
+
ref: ref,
|
|
6604
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6605
|
+
width: size,
|
|
6606
|
+
height: size,
|
|
6607
|
+
viewBox: "0 0 24 24",
|
|
6608
|
+
fill: "none",
|
|
6609
|
+
stroke: color,
|
|
6610
|
+
strokeWidth: strokeWidth,
|
|
6611
|
+
strokeLinecap: "round",
|
|
6612
|
+
strokeLinejoin: "round"
|
|
6613
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6614
|
+
d: "M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"
|
|
6615
|
+
}));
|
|
6616
|
+
});
|
|
6617
|
+
ArrowUpBig.displayName = "ArrowUpBig";
|
|
6618
|
+
|
|
6619
|
+
var ArrowUpBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6620
|
+
var _b = _a.color,
|
|
6621
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6622
|
+
_c = _a.size,
|
|
6623
|
+
size = _c === void 0 ? 24 : _c,
|
|
6624
|
+
_d = _a.strokeWidth,
|
|
6625
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6626
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6627
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6628
|
+
ref: ref,
|
|
6629
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6630
|
+
width: size,
|
|
6631
|
+
height: size,
|
|
6632
|
+
viewBox: "0 0 24 24",
|
|
6633
|
+
fill: "none",
|
|
6634
|
+
stroke: color,
|
|
6635
|
+
strokeWidth: strokeWidth,
|
|
6636
|
+
strokeLinecap: "round",
|
|
6637
|
+
strokeLinejoin: "round"
|
|
6638
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6639
|
+
d: "M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"
|
|
6640
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6641
|
+
d: "M9 20h6"
|
|
6642
|
+
}));
|
|
6643
|
+
});
|
|
6644
|
+
ArrowUpBigDash.displayName = "ArrowUpBigDash";
|
|
6645
|
+
|
|
6646
|
+
var ArrowRightBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6647
|
+
var _b = _a.color,
|
|
6648
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6649
|
+
_c = _a.size,
|
|
6650
|
+
size = _c === void 0 ? 24 : _c,
|
|
6651
|
+
_d = _a.strokeWidth,
|
|
6652
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6653
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6654
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6655
|
+
ref: ref,
|
|
6656
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6657
|
+
width: size,
|
|
6658
|
+
height: size,
|
|
6659
|
+
viewBox: "0 0 24 24",
|
|
6660
|
+
fill: "none",
|
|
6661
|
+
stroke: color,
|
|
6662
|
+
strokeWidth: strokeWidth,
|
|
6663
|
+
strokeLinecap: "round",
|
|
6664
|
+
strokeLinejoin: "round"
|
|
6665
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6666
|
+
d: "M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"
|
|
6667
|
+
}));
|
|
6668
|
+
});
|
|
6669
|
+
ArrowRightBig.displayName = "ArrowRightBig";
|
|
6670
|
+
|
|
6671
|
+
var ArrowRightBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6672
|
+
var _b = _a.color,
|
|
6673
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6674
|
+
_c = _a.size,
|
|
6675
|
+
size = _c === void 0 ? 24 : _c,
|
|
6676
|
+
_d = _a.strokeWidth,
|
|
6677
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6678
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6679
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6680
|
+
ref: ref,
|
|
6681
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6682
|
+
width: size,
|
|
6683
|
+
height: size,
|
|
6684
|
+
viewBox: "0 0 24 24",
|
|
6685
|
+
fill: "none",
|
|
6686
|
+
stroke: color,
|
|
6687
|
+
strokeWidth: strokeWidth,
|
|
6688
|
+
strokeLinecap: "round",
|
|
6689
|
+
strokeLinejoin: "round"
|
|
6690
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6691
|
+
d: "M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"
|
|
6692
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6693
|
+
d: "M4 9v6"
|
|
6694
|
+
}));
|
|
6695
|
+
});
|
|
6696
|
+
ArrowRightBigDash.displayName = "ArrowRightBigDash";
|
|
6697
|
+
|
|
6698
|
+
var ArrowLeftBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6699
|
+
var _b = _a.color,
|
|
6700
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6701
|
+
_c = _a.size,
|
|
6702
|
+
size = _c === void 0 ? 24 : _c,
|
|
6703
|
+
_d = _a.strokeWidth,
|
|
6704
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6705
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6706
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6707
|
+
ref: ref,
|
|
6708
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6709
|
+
width: size,
|
|
6710
|
+
height: size,
|
|
6711
|
+
viewBox: "0 0 24 24",
|
|
6712
|
+
fill: "none",
|
|
6713
|
+
stroke: color,
|
|
6714
|
+
strokeWidth: strokeWidth,
|
|
6715
|
+
strokeLinecap: "round",
|
|
6716
|
+
strokeLinejoin: "round"
|
|
6717
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6718
|
+
d: "M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"
|
|
6719
|
+
}));
|
|
6720
|
+
});
|
|
6721
|
+
ArrowLeftBig.displayName = "ArrowLeftBig";
|
|
6722
|
+
|
|
6723
|
+
var ArrowLeftBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6724
|
+
var _b = _a.color,
|
|
6725
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6726
|
+
_c = _a.size,
|
|
6727
|
+
size = _c === void 0 ? 24 : _c,
|
|
6728
|
+
_d = _a.strokeWidth,
|
|
6729
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6730
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6731
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6732
|
+
ref: ref,
|
|
6733
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6734
|
+
width: size,
|
|
6735
|
+
height: size,
|
|
6736
|
+
viewBox: "0 0 24 24",
|
|
6737
|
+
fill: "none",
|
|
6738
|
+
stroke: color,
|
|
6739
|
+
strokeWidth: strokeWidth,
|
|
6740
|
+
strokeLinecap: "round",
|
|
6741
|
+
strokeLinejoin: "round"
|
|
6742
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6743
|
+
d: "M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"
|
|
6744
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6745
|
+
d: "M20 9v6"
|
|
6746
|
+
}));
|
|
6747
|
+
});
|
|
6748
|
+
ArrowLeftBigDash.displayName = "ArrowLeftBigDash";
|
|
6749
|
+
|
|
6167
6750
|
var Battery = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6168
6751
|
var _b = _a.color,
|
|
6169
6752
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7457,6 +8040,35 @@ var Dollar = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
7457
8040
|
});
|
|
7458
8041
|
Dollar.displayName = "Dollar";
|
|
7459
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
|
+
|
|
7460
8072
|
var Download = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
7461
8073
|
var _b = _a.color,
|
|
7462
8074
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -10881,4 +11493,4 @@ var ZapOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
10881
11493
|
});
|
|
10882
11494
|
ZapOff.displayName = "ZapOff";
|
|
10883
11495
|
|
|
10884
|
-
export { 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, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowRight, ArrowRightCircle, ArrowUp, 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",
|