@deemlol/next-icons 0.2.2 → 0.2.3
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/text/AArrowDown.d.ts +8 -0
- package/build/icons/text/AArrowUp.d.ts +8 -0
- package/build/index.d.ts +10 -0
- package/build/index.js +271 -1
- package/package.json +1 -1
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 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
|
@@ -149,6 +149,8 @@ export { default as Clock } from "./icons/alarm/Clock";
|
|
|
149
149
|
export { default as AlertCircle } from "./icons/alert/AlertCircle";
|
|
150
150
|
export { default as AlertOctagon } from "./icons/alert/AlertOctagon";
|
|
151
151
|
export { default as AlertTriangle } from "./icons/alert/AlertTriangle";
|
|
152
|
+
export { default as AArrowUp } from "./icons/text/AArrowUp";
|
|
153
|
+
export { default as AArrowDown } from "./icons/text/AArrowDown";
|
|
152
154
|
export { default as AlignCenter } from "./icons/text/AlignCenter";
|
|
153
155
|
export { default as AlignJustify } from "./icons/text/AlignJustify";
|
|
154
156
|
export { default as AlignLeft } from "./icons/text/AlignLeft";
|
|
@@ -201,6 +203,14 @@ export { default as CornerRightDown } from "./icons/arrow/CornerRightDown";
|
|
|
201
203
|
export { default as CornerRightUp } from "./icons/arrow/CornerRightUp";
|
|
202
204
|
export { default as CornerUpLeft } from "./icons/arrow/CornerUpLeft";
|
|
203
205
|
export { default as CornerUpRight } from "./icons/arrow/CornerUpRight";
|
|
206
|
+
export { default as ArrowDownBig } from "./icons/arrow/ArrowDownBig";
|
|
207
|
+
export { default as ArrowDownBigDash } from "./icons/arrow/ArrowDownBigDash";
|
|
208
|
+
export { default as ArrowUpBig } from "./icons/arrow/ArrowUpBig";
|
|
209
|
+
export { default as ArrowUpBigDash } from "./icons/arrow/ArrowUpBigDash";
|
|
210
|
+
export { default as ArrowRightBig } from "./icons/arrow/ArrowRightBig";
|
|
211
|
+
export { default as ArrowRightBigDash } from "./icons/arrow/ArrowRightBigDash";
|
|
212
|
+
export { default as ArrowLeftBig } from "./icons/arrow/ArrowLeftBig";
|
|
213
|
+
export { default as ArrowLeftBigDash } from "./icons/arrow/ArrowLeftBigDash";
|
|
204
214
|
export { default as Battery } from "./icons/battery/Battery";
|
|
205
215
|
export { default as BatteryCharging } from "./icons/battery/BatteryCharging";
|
|
206
216
|
export { default as Bell } from "./icons/bell/Bell";
|
package/build/index.js
CHANGED
|
@@ -4499,6 +4499,68 @@ var AlertTriangle = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
4499
4499
|
});
|
|
4500
4500
|
AlertTriangle.displayName = "AlertTriangle";
|
|
4501
4501
|
|
|
4502
|
+
var AArrowUp = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4503
|
+
var _b = _a.color,
|
|
4504
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4505
|
+
_c = _a.size,
|
|
4506
|
+
size = _c === void 0 ? 24 : _c,
|
|
4507
|
+
_d = _a.strokeWidth,
|
|
4508
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4509
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4510
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4511
|
+
ref: ref,
|
|
4512
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4513
|
+
width: size,
|
|
4514
|
+
height: size,
|
|
4515
|
+
viewBox: "0 0 24 24",
|
|
4516
|
+
fill: "none",
|
|
4517
|
+
stroke: color,
|
|
4518
|
+
strokeWidth: strokeWidth,
|
|
4519
|
+
strokeLinecap: "round",
|
|
4520
|
+
strokeLinejoin: "round"
|
|
4521
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4522
|
+
d: "m14 11 4-4 4 4"
|
|
4523
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4524
|
+
d: "M18 16V7"
|
|
4525
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4526
|
+
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"
|
|
4527
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4528
|
+
d: "M3.304 13h6.392"
|
|
4529
|
+
}));
|
|
4530
|
+
});
|
|
4531
|
+
AArrowUp.displayName = "AArrowUp";
|
|
4532
|
+
|
|
4533
|
+
var AArrowDown = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4534
|
+
var _b = _a.color,
|
|
4535
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4536
|
+
_c = _a.size,
|
|
4537
|
+
size = _c === void 0 ? 24 : _c,
|
|
4538
|
+
_d = _a.strokeWidth,
|
|
4539
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
4540
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
4541
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
4542
|
+
ref: ref,
|
|
4543
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4544
|
+
width: size,
|
|
4545
|
+
height: size,
|
|
4546
|
+
viewBox: "0 0 24 24",
|
|
4547
|
+
fill: "none",
|
|
4548
|
+
stroke: color,
|
|
4549
|
+
strokeWidth: strokeWidth,
|
|
4550
|
+
strokeLinecap: "round",
|
|
4551
|
+
strokeLinejoin: "round"
|
|
4552
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
4553
|
+
d: "m14 12 4 4 4-4"
|
|
4554
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4555
|
+
d: "M18 16V7"
|
|
4556
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4557
|
+
d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"
|
|
4558
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4559
|
+
d: "M3.304 13h6.392"
|
|
4560
|
+
}));
|
|
4561
|
+
});
|
|
4562
|
+
AArrowDown.displayName = "AArrowDown";
|
|
4563
|
+
|
|
4502
4564
|
var AlignCenter = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
4503
4565
|
var _b = _a.color,
|
|
4504
4566
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -6164,6 +6226,214 @@ var CornerUpRight = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
6164
6226
|
});
|
|
6165
6227
|
CornerUpRight.displayName = "CornerUpRight";
|
|
6166
6228
|
|
|
6229
|
+
var ArrowDownBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6230
|
+
var _b = _a.color,
|
|
6231
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6232
|
+
_c = _a.size,
|
|
6233
|
+
size = _c === void 0 ? 24 : _c,
|
|
6234
|
+
_d = _a.strokeWidth,
|
|
6235
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6236
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6237
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6238
|
+
ref: ref,
|
|
6239
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6240
|
+
width: size,
|
|
6241
|
+
height: size,
|
|
6242
|
+
viewBox: "0 0 24 24",
|
|
6243
|
+
fill: "none",
|
|
6244
|
+
stroke: color,
|
|
6245
|
+
strokeWidth: strokeWidth,
|
|
6246
|
+
strokeLinecap: "round",
|
|
6247
|
+
strokeLinejoin: "round"
|
|
6248
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6249
|
+
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"
|
|
6250
|
+
}));
|
|
6251
|
+
});
|
|
6252
|
+
ArrowDownBig.displayName = "ArrowDownBig";
|
|
6253
|
+
|
|
6254
|
+
var ArrowDownBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6255
|
+
var _b = _a.color,
|
|
6256
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6257
|
+
_c = _a.size,
|
|
6258
|
+
size = _c === void 0 ? 24 : _c,
|
|
6259
|
+
_d = _a.strokeWidth,
|
|
6260
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6261
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6262
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6263
|
+
ref: ref,
|
|
6264
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6265
|
+
width: size,
|
|
6266
|
+
height: size,
|
|
6267
|
+
viewBox: "0 0 24 24",
|
|
6268
|
+
fill: "none",
|
|
6269
|
+
stroke: color,
|
|
6270
|
+
strokeWidth: strokeWidth,
|
|
6271
|
+
strokeLinecap: "round",
|
|
6272
|
+
strokeLinejoin: "round"
|
|
6273
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6274
|
+
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"
|
|
6275
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6276
|
+
d: "M9 4h6"
|
|
6277
|
+
}));
|
|
6278
|
+
});
|
|
6279
|
+
ArrowDownBigDash.displayName = "ArrowDownBigDash";
|
|
6280
|
+
|
|
6281
|
+
var ArrowUpBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6282
|
+
var _b = _a.color,
|
|
6283
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6284
|
+
_c = _a.size,
|
|
6285
|
+
size = _c === void 0 ? 24 : _c,
|
|
6286
|
+
_d = _a.strokeWidth,
|
|
6287
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6288
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6289
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6290
|
+
ref: ref,
|
|
6291
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6292
|
+
width: size,
|
|
6293
|
+
height: size,
|
|
6294
|
+
viewBox: "0 0 24 24",
|
|
6295
|
+
fill: "none",
|
|
6296
|
+
stroke: color,
|
|
6297
|
+
strokeWidth: strokeWidth,
|
|
6298
|
+
strokeLinecap: "round",
|
|
6299
|
+
strokeLinejoin: "round"
|
|
6300
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6301
|
+
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"
|
|
6302
|
+
}));
|
|
6303
|
+
});
|
|
6304
|
+
ArrowUpBig.displayName = "ArrowUpBig";
|
|
6305
|
+
|
|
6306
|
+
var ArrowUpBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6307
|
+
var _b = _a.color,
|
|
6308
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6309
|
+
_c = _a.size,
|
|
6310
|
+
size = _c === void 0 ? 24 : _c,
|
|
6311
|
+
_d = _a.strokeWidth,
|
|
6312
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6313
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6314
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6315
|
+
ref: ref,
|
|
6316
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6317
|
+
width: size,
|
|
6318
|
+
height: size,
|
|
6319
|
+
viewBox: "0 0 24 24",
|
|
6320
|
+
fill: "none",
|
|
6321
|
+
stroke: color,
|
|
6322
|
+
strokeWidth: strokeWidth,
|
|
6323
|
+
strokeLinecap: "round",
|
|
6324
|
+
strokeLinejoin: "round"
|
|
6325
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6326
|
+
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"
|
|
6327
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6328
|
+
d: "M9 20h6"
|
|
6329
|
+
}));
|
|
6330
|
+
});
|
|
6331
|
+
ArrowUpBigDash.displayName = "ArrowUpBigDash";
|
|
6332
|
+
|
|
6333
|
+
var ArrowRightBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6334
|
+
var _b = _a.color,
|
|
6335
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6336
|
+
_c = _a.size,
|
|
6337
|
+
size = _c === void 0 ? 24 : _c,
|
|
6338
|
+
_d = _a.strokeWidth,
|
|
6339
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6340
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6341
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6342
|
+
ref: ref,
|
|
6343
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6344
|
+
width: size,
|
|
6345
|
+
height: size,
|
|
6346
|
+
viewBox: "0 0 24 24",
|
|
6347
|
+
fill: "none",
|
|
6348
|
+
stroke: color,
|
|
6349
|
+
strokeWidth: strokeWidth,
|
|
6350
|
+
strokeLinecap: "round",
|
|
6351
|
+
strokeLinejoin: "round"
|
|
6352
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6353
|
+
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"
|
|
6354
|
+
}));
|
|
6355
|
+
});
|
|
6356
|
+
ArrowRightBig.displayName = "ArrowRightBig";
|
|
6357
|
+
|
|
6358
|
+
var ArrowRightBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6359
|
+
var _b = _a.color,
|
|
6360
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6361
|
+
_c = _a.size,
|
|
6362
|
+
size = _c === void 0 ? 24 : _c,
|
|
6363
|
+
_d = _a.strokeWidth,
|
|
6364
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6365
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6366
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6367
|
+
ref: ref,
|
|
6368
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6369
|
+
width: size,
|
|
6370
|
+
height: size,
|
|
6371
|
+
viewBox: "0 0 24 24",
|
|
6372
|
+
fill: "none",
|
|
6373
|
+
stroke: color,
|
|
6374
|
+
strokeWidth: strokeWidth,
|
|
6375
|
+
strokeLinecap: "round",
|
|
6376
|
+
strokeLinejoin: "round"
|
|
6377
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6378
|
+
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"
|
|
6379
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6380
|
+
d: "M4 9v6"
|
|
6381
|
+
}));
|
|
6382
|
+
});
|
|
6383
|
+
ArrowRightBigDash.displayName = "ArrowRightBigDash";
|
|
6384
|
+
|
|
6385
|
+
var ArrowLeftBig = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6386
|
+
var _b = _a.color,
|
|
6387
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6388
|
+
_c = _a.size,
|
|
6389
|
+
size = _c === void 0 ? 24 : _c,
|
|
6390
|
+
_d = _a.strokeWidth,
|
|
6391
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6392
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6393
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6394
|
+
ref: ref,
|
|
6395
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6396
|
+
width: size,
|
|
6397
|
+
height: size,
|
|
6398
|
+
viewBox: "0 0 24 24",
|
|
6399
|
+
fill: "none",
|
|
6400
|
+
stroke: color,
|
|
6401
|
+
strokeWidth: strokeWidth,
|
|
6402
|
+
strokeLinecap: "round",
|
|
6403
|
+
strokeLinejoin: "round"
|
|
6404
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6405
|
+
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"
|
|
6406
|
+
}));
|
|
6407
|
+
});
|
|
6408
|
+
ArrowLeftBig.displayName = "ArrowLeftBig";
|
|
6409
|
+
|
|
6410
|
+
var ArrowLeftBigDash = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6411
|
+
var _b = _a.color,
|
|
6412
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6413
|
+
_c = _a.size,
|
|
6414
|
+
size = _c === void 0 ? 24 : _c,
|
|
6415
|
+
_d = _a.strokeWidth,
|
|
6416
|
+
strokeWidth = _d === void 0 ? 1.5 : _d,
|
|
6417
|
+
rest = __rest(_a, ["color", "size", "strokeWidth"]);
|
|
6418
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
6419
|
+
ref: ref,
|
|
6420
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6421
|
+
width: size,
|
|
6422
|
+
height: size,
|
|
6423
|
+
viewBox: "0 0 24 24",
|
|
6424
|
+
fill: "none",
|
|
6425
|
+
stroke: color,
|
|
6426
|
+
strokeWidth: strokeWidth,
|
|
6427
|
+
strokeLinecap: "round",
|
|
6428
|
+
strokeLinejoin: "round"
|
|
6429
|
+
}, rest), /*#__PURE__*/React.createElement("path", {
|
|
6430
|
+
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"
|
|
6431
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
6432
|
+
d: "M20 9v6"
|
|
6433
|
+
}));
|
|
6434
|
+
});
|
|
6435
|
+
ArrowLeftBigDash.displayName = "ArrowLeftBigDash";
|
|
6436
|
+
|
|
6167
6437
|
var Battery = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
6168
6438
|
var _b = _a.color,
|
|
6169
6439
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -10881,4 +11151,4 @@ var ZapOff = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
10881
11151
|
});
|
|
10882
11152
|
ZapOff.displayName = "ZapOff";
|
|
10883
11153
|
|
|
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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
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.",
|