@deemlol/next-icons 0.2.1 → 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 +601 -331
- 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 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";
|