@deemlol/next-icons 0.1.5 → 0.1.7
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 +35 -27
- package/build/icons/airplane.d.ts +21 -0
- package/build/icons/airplaneLanding.d.ts +21 -0
- package/build/icons/airplaneLanding2.d.ts +21 -0
- package/build/icons/airplaneMode.d.ts +21 -0
- package/build/icons/airplaneModeOff.d.ts +21 -0
- package/build/icons/airplaneSeat.d.ts +21 -0
- package/build/icons/airplaneTakeOff.d.ts +21 -0
- package/build/icons/airplaneTakeOff2.d.ts +21 -0
- package/build/icons/html.d.ts +21 -0
- package/build/icons/paypal.d.ts +21 -0
- package/build/icons/react.d.ts +21 -0
- package/build/icons/tailwindCSS.d.ts +21 -0
- package/build/index.d.ts +12 -0
- package/build/index.js +405 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,55 +1,63 @@
|
|
|
1
|
-
|
|
1
|
+
[](https://www.nexticons.com)
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
### What is Next-Icons?
|
|
8
|
-
|
|
9
7
|
A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration. Each icon is designed on a 24x24 grid.
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
https://www.nexticons.com
|
|
14
|
-
|
|
15
|
-
### Installation
|
|
16
|
-
|
|
17
|
-
yarn add @deemlol/next-icons@latest
|
|
18
|
-
|
|
19
|
-
or
|
|
9
|
+
## Installation (for standard modern project)
|
|
20
10
|
|
|
21
|
-
|
|
11
|
+
```bash
|
|
12
|
+
yarn add @deemlol/next-icons@latest
|
|
13
|
+
# or
|
|
14
|
+
npm install @deemlol/next-icons@latest
|
|
15
|
+
```
|
|
22
16
|
|
|
23
|
-
|
|
17
|
+
## Example Usage
|
|
24
18
|
|
|
25
19
|
```javascript
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
export default function
|
|
29
|
-
return
|
|
20
|
+
import { Cookie } from "@deemlol/next-icons";
|
|
21
|
+
|
|
22
|
+
export default function Question() {
|
|
23
|
+
return (
|
|
24
|
+
<h1>
|
|
25
|
+
Do you want <Cookie />?
|
|
26
|
+
</h1>
|
|
27
|
+
);
|
|
30
28
|
}
|
|
31
29
|
```
|
|
32
30
|
|
|
33
|
-
|
|
31
|
+
#### _You can also include the whole icon pack:_
|
|
34
32
|
|
|
35
33
|
```javascript
|
|
36
34
|
import * as Icon from "@deemlol/next-icons";
|
|
37
35
|
|
|
38
|
-
export default function
|
|
39
|
-
return
|
|
36
|
+
export default function Question() {
|
|
37
|
+
return (
|
|
38
|
+
<h1>
|
|
39
|
+
Do you want <Icon.Cookie />?
|
|
40
|
+
</h1>
|
|
41
|
+
);
|
|
40
42
|
}
|
|
41
43
|
```
|
|
42
44
|
|
|
43
|
-
|
|
45
|
+
## Configuration
|
|
44
46
|
|
|
45
|
-
|
|
47
|
+
_Our icons can be also configured with inline props_
|
|
46
48
|
|
|
47
49
|
```javascript
|
|
48
|
-
<
|
|
50
|
+
<Cookie size={40} color="#FF0000" className="flex items-center" />
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
|
|
53
|
+
## Our Website
|
|
54
|
+
|
|
55
|
+
For more information, visit our [Official Website](https://www.nexticons.com).
|
|
56
|
+
|
|
57
|
+
## Support
|
|
58
|
+
|
|
59
|
+
If you encounter any issues or have questions, feel free to reach out to our [Support Team](https://www.nexticons.com/contact).
|
|
52
60
|
|
|
53
|
-
|
|
61
|
+
## License
|
|
54
62
|
|
|
55
|
-
|
|
63
|
+
This project is licensed under the MIT License. See the [LICENSE](https://www.nexticons.com/license) for more information.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlane: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlane;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneLanding: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneLanding;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneLanding2: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneLanding2;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneMode: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneMode;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneModeOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneModeOff;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneSeat: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneSeat;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneTakeOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneTakeOff;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const AirPlaneTakeOff2: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default AirPlaneTakeOff2;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const HTML5: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default HTML5;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const PayPal: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default PayPal;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const ReactJS: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default ReactJS;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React, { SVGAttributes } from "react";
|
|
2
|
+
/******************************************************************************
|
|
3
|
+
Copyright (c) Alexandr Virgovič.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */
|
|
16
|
+
interface IconProps extends SVGAttributes<SVGElement> {
|
|
17
|
+
color?: string;
|
|
18
|
+
size?: string | number;
|
|
19
|
+
}
|
|
20
|
+
declare const TailwindCSS: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
|
21
|
+
export default TailwindCSS;
|
package/build/index.d.ts
CHANGED
|
@@ -14,6 +14,14 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
14
14
|
***************************************************************************** */
|
|
15
15
|
export { default as Accessibility } from "./icons/accessibility";
|
|
16
16
|
export { default as Activity } from "./icons/activity";
|
|
17
|
+
export { default as AirPlane } from "./icons/airplane";
|
|
18
|
+
export { default as AirPlaneLanding } from "./icons/airplaneLanding";
|
|
19
|
+
export { default as AirPlaneLanding2 } from "./icons/airplaneLanding2";
|
|
20
|
+
export { default as AirPlaneMode } from "./icons/airplaneMode";
|
|
21
|
+
export { default as AirPlaneModeOff } from "./icons/airplaneModeOff";
|
|
22
|
+
export { default as AirPlaneSeat } from "./icons/airplaneSeat";
|
|
23
|
+
export { default as AirPlaneTakeOff } from "./icons/airplaneTakeOff";
|
|
24
|
+
export { default as AirPlaneTakeOff2 } from "./icons/airplaneTakeOff2";
|
|
17
25
|
export { default as Airplay } from "./icons/airplay";
|
|
18
26
|
export { default as AlarmClock } from "./icons/alarmClock";
|
|
19
27
|
export { default as AlarmClockCheck } from "./icons/alarmClockCheck";
|
|
@@ -163,6 +171,7 @@ export { default as Heart } from "./icons/heart";
|
|
|
163
171
|
export { default as HelpCircle } from "./icons/helpCircle";
|
|
164
172
|
export { default as Hexagon } from "./icons/hexagon";
|
|
165
173
|
export { default as House } from "./icons/house";
|
|
174
|
+
export { default as HTML5 } from "./icons/html";
|
|
166
175
|
export { default as Image } from "./icons/image";
|
|
167
176
|
export { default as Inbox } from "./icons/inbox";
|
|
168
177
|
export { default as Info } from "./icons/info";
|
|
@@ -213,6 +222,7 @@ export { default as Package } from "./icons/package";
|
|
|
213
222
|
export { default as Paperclip } from "./icons/paperclip";
|
|
214
223
|
export { default as Pause } from "./icons/pause";
|
|
215
224
|
export { default as PauseCircle } from "./icons/pauseCircle";
|
|
225
|
+
export { default as PayPal } from "./icons/paypal";
|
|
216
226
|
export { default as PenTool } from "./icons/penTool";
|
|
217
227
|
export { default as Percent } from "./icons/percent";
|
|
218
228
|
export { default as Phone } from "./icons/phone";
|
|
@@ -233,6 +243,7 @@ export { default as Power } from "./icons/power";
|
|
|
233
243
|
export { default as Printer } from "./icons/printer";
|
|
234
244
|
export { default as Python } from "./icons/python";
|
|
235
245
|
export { default as Radio } from "./icons/radio";
|
|
246
|
+
export { default as ReactJS } from "./icons/react";
|
|
236
247
|
export { default as RefreshCcw } from "./icons/refreshCcw";
|
|
237
248
|
export { default as RefreshCw } from "./icons/refreshCw";
|
|
238
249
|
export { default as Repeat } from "./icons/repeat";
|
|
@@ -275,6 +286,7 @@ export { default as Sunset } from "./icons/sunset";
|
|
|
275
286
|
export { default as Table } from "./icons/table";
|
|
276
287
|
export { default as Tablet } from "./icons/tablet";
|
|
277
288
|
export { default as Tag } from "./icons/tag";
|
|
289
|
+
export { default as TailwindCSS } from "./icons/tailwindCSS";
|
|
278
290
|
export { default as Target } from "./icons/target";
|
|
279
291
|
export { default as Terminal } from "./icons/terminal";
|
|
280
292
|
export { default as TextUp } from "./icons/textUp";
|
package/build/index.js
CHANGED
|
@@ -104,6 +104,267 @@ var Activity = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
104
104
|
});
|
|
105
105
|
Activity.displayName = "Activity";
|
|
106
106
|
|
|
107
|
+
var AirPlane = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
108
|
+
var _b = _a.color,
|
|
109
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
110
|
+
_c = _a.size,
|
|
111
|
+
size = _c === void 0 ? 24 : _c,
|
|
112
|
+
rest = __rest(_a, ["color", "size"]);
|
|
113
|
+
return /*#__PURE__*/ React.createElement(
|
|
114
|
+
"svg",
|
|
115
|
+
__assign(
|
|
116
|
+
{
|
|
117
|
+
ref: ref,
|
|
118
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
119
|
+
width: size,
|
|
120
|
+
height: size,
|
|
121
|
+
viewBox: "0 0 24 24",
|
|
122
|
+
fill: "none",
|
|
123
|
+
stroke: color,
|
|
124
|
+
strokeWidth: "2",
|
|
125
|
+
strokeLinecap: "round",
|
|
126
|
+
strokeLinejoin: "round"
|
|
127
|
+
},
|
|
128
|
+
rest
|
|
129
|
+
),
|
|
130
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
131
|
+
d: "M4.42238 13.1785L3 14.6006L7.26716 16.7337L9.40076 21L10.8231 19.5779L10.4675 16.3782L13.3123 13.534L17.2239 19.5779L18.5405 18.2616C19.0464 17.7558 19.2455 17.0194 19.0634 16.3277L17.5795 10.6898L19.4074 9.14342C21.0317 7.76935 21.4911 5.35695 20.4243 3.57933C18.6463 2.51276 15.8192 2.91468 14.4579 4.81999L13.3123 6.42352L7.67331 4.93988C6.98142 4.75784 6.24488 4.95692 5.73899 5.46271L4.42238 6.77905L10.4675 10.6898L7.62276 13.534L4.42238 13.1785Z"
|
|
132
|
+
})
|
|
133
|
+
);
|
|
134
|
+
});
|
|
135
|
+
AirPlane.displayName = "AirPlane";
|
|
136
|
+
|
|
137
|
+
var AirPlaneLanding = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
138
|
+
var _b = _a.color,
|
|
139
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
140
|
+
_c = _a.size,
|
|
141
|
+
size = _c === void 0 ? 24 : _c,
|
|
142
|
+
rest = __rest(_a, ["color", "size"]);
|
|
143
|
+
return /*#__PURE__*/ React.createElement(
|
|
144
|
+
"svg",
|
|
145
|
+
__assign(
|
|
146
|
+
{
|
|
147
|
+
ref: ref,
|
|
148
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
149
|
+
width: size,
|
|
150
|
+
height: size,
|
|
151
|
+
viewBox: "0 0 24 24",
|
|
152
|
+
fill: "none",
|
|
153
|
+
stroke: color,
|
|
154
|
+
strokeWidth: "2",
|
|
155
|
+
strokeLinecap: "round",
|
|
156
|
+
strokeLinejoin: "round"
|
|
157
|
+
},
|
|
158
|
+
rest
|
|
159
|
+
),
|
|
160
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
161
|
+
d: "M6 20L22 20"
|
|
162
|
+
}),
|
|
163
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
164
|
+
d: "M3.5 4L2 9.98552L8.74946 12.289L6 14.4747L11 15.971L13.5 13.9102L19.4344 15.9355C20.202 16.1975 21 15.6284 21 14.8192C21 11.5028 18.4934 8.72002 15.1879 8.36672L7 7.49156L6.5 4H3.5Z"
|
|
165
|
+
})
|
|
166
|
+
);
|
|
167
|
+
});
|
|
168
|
+
AirPlaneLanding.displayName = "AirPlaneLanding";
|
|
169
|
+
|
|
170
|
+
var AirPlaneLanding2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
171
|
+
var _b = _a.color,
|
|
172
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
173
|
+
_c = _a.size,
|
|
174
|
+
size = _c === void 0 ? 24 : _c,
|
|
175
|
+
rest = __rest(_a, ["color", "size"]);
|
|
176
|
+
return /*#__PURE__*/ React.createElement(
|
|
177
|
+
"svg",
|
|
178
|
+
__assign(
|
|
179
|
+
{
|
|
180
|
+
ref: ref,
|
|
181
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
182
|
+
width: size,
|
|
183
|
+
height: size,
|
|
184
|
+
viewBox: "0 0 24 24",
|
|
185
|
+
fill: "none",
|
|
186
|
+
stroke: color,
|
|
187
|
+
strokeWidth: "2",
|
|
188
|
+
strokeLinecap: "round",
|
|
189
|
+
strokeLinejoin: "round"
|
|
190
|
+
},
|
|
191
|
+
rest
|
|
192
|
+
),
|
|
193
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
194
|
+
d: "M18.0516 20.0928H2.24219"
|
|
195
|
+
}),
|
|
196
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
197
|
+
d: "M19.5 4L21 9.98552L14.2505 12.289L17 14.4747L12 15.971L9.5 13.9102L3.56558 15.9355C2.79804 16.1975 2 15.6284 2 14.8192C2 11.5028 4.50658 8.72002 7.81207 8.36672L16 7.49156L16.5 4H19.5Z"
|
|
198
|
+
})
|
|
199
|
+
);
|
|
200
|
+
});
|
|
201
|
+
AirPlaneLanding2.displayName = "AirPlaneLanding2";
|
|
202
|
+
|
|
203
|
+
var AirPlaneMode = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
204
|
+
var _b = _a.color,
|
|
205
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
206
|
+
_c = _a.size,
|
|
207
|
+
size = _c === void 0 ? 24 : _c,
|
|
208
|
+
rest = __rest(_a, ["color", "size"]);
|
|
209
|
+
return /*#__PURE__*/ React.createElement(
|
|
210
|
+
"svg",
|
|
211
|
+
__assign(
|
|
212
|
+
{
|
|
213
|
+
ref: ref,
|
|
214
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
215
|
+
width: size,
|
|
216
|
+
height: size,
|
|
217
|
+
viewBox: "0 0 24 24",
|
|
218
|
+
fill: "none",
|
|
219
|
+
stroke: color,
|
|
220
|
+
strokeWidth: "2",
|
|
221
|
+
strokeLinecap: "round",
|
|
222
|
+
strokeLinejoin: "round"
|
|
223
|
+
},
|
|
224
|
+
rest
|
|
225
|
+
),
|
|
226
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
227
|
+
d: "M7.5 20V22L12 20.5L16.5 22V20L14 18V14L21 15.5V13.6487C21 12.9374 20.6222 12.2796 20.0077 11.9212L15 9L15.1977 6.62748C15.3734 4.51935 14 2.5 12 2C10 2.5 8.29504 4.77022 8.67783 7.06701L9 9L3.99226 11.9212C3.37782 12.2796 3 12.9374 3 13.6487V15.5L10 14V18L7.5 20Z"
|
|
228
|
+
})
|
|
229
|
+
);
|
|
230
|
+
});
|
|
231
|
+
AirPlaneMode.displayName = "AirPlaneMode";
|
|
232
|
+
|
|
233
|
+
var AirPlaneModeOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
234
|
+
var _b = _a.color,
|
|
235
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
236
|
+
_c = _a.size,
|
|
237
|
+
size = _c === void 0 ? 24 : _c,
|
|
238
|
+
rest = __rest(_a, ["color", "size"]);
|
|
239
|
+
return /*#__PURE__*/ React.createElement(
|
|
240
|
+
"svg",
|
|
241
|
+
__assign(
|
|
242
|
+
{
|
|
243
|
+
ref: ref,
|
|
244
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
245
|
+
width: size,
|
|
246
|
+
height: size,
|
|
247
|
+
viewBox: "0 0 24 24",
|
|
248
|
+
fill: "none",
|
|
249
|
+
stroke: color,
|
|
250
|
+
strokeWidth: "2",
|
|
251
|
+
strokeLinecap: "round",
|
|
252
|
+
strokeLinejoin: "round"
|
|
253
|
+
},
|
|
254
|
+
rest
|
|
255
|
+
),
|
|
256
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
257
|
+
d: "M9 9L3.99226 11.9212C3.37782 12.2796 3 12.9374 3 13.6487V15.5L10 14V18L7.5 20V22L12 20.5L16.5 22V20L14 18V14M9 5C9.50809 3.53791 10.617 2.34574 12 2C14 2.5 15.3734 4.51935 15.1977 6.62748L15 9L20.0077 11.9212C20.6222 12.2796 21 12.9374 21 13.6487V15.5L19 15"
|
|
258
|
+
}),
|
|
259
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
260
|
+
d: "M2 2L21.9999 22"
|
|
261
|
+
})
|
|
262
|
+
);
|
|
263
|
+
});
|
|
264
|
+
AirPlaneModeOff.displayName = "AirPlaneModeOff";
|
|
265
|
+
|
|
266
|
+
var AirPlaneSeat = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
267
|
+
var _b = _a.color,
|
|
268
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
269
|
+
_c = _a.size,
|
|
270
|
+
size = _c === void 0 ? 24 : _c,
|
|
271
|
+
rest = __rest(_a, ["color", "size"]);
|
|
272
|
+
return /*#__PURE__*/ React.createElement(
|
|
273
|
+
"svg",
|
|
274
|
+
__assign(
|
|
275
|
+
{
|
|
276
|
+
ref: ref,
|
|
277
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
278
|
+
width: size,
|
|
279
|
+
height: size,
|
|
280
|
+
viewBox: "0 0 24 24",
|
|
281
|
+
fill: "none",
|
|
282
|
+
stroke: color,
|
|
283
|
+
strokeWidth: "2",
|
|
284
|
+
strokeLinecap: "round",
|
|
285
|
+
strokeLinejoin: "round"
|
|
286
|
+
},
|
|
287
|
+
rest
|
|
288
|
+
),
|
|
289
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
290
|
+
d: "M8.61298 18H17.9722C19.0921 18 20 17.1077 20 16.0071C20 14.5 17.9722 14.0141 17.9722 14.0141C17.9722 14.0141 14.2844 12.5964 10 14C10 14 9.86099 8.87274 7.70985 3.17067C7.28543 2.04566 5.90119 1.66155 4.88539 2.3271C4.21507 2.7663 3.8807 3.55966 4.0387 4.33605L6.65836 16.4236C6.85774 17.3436 7.67165 18 8.61298 18Z"
|
|
291
|
+
}),
|
|
292
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
293
|
+
d: "M12.5 10.5H18"
|
|
294
|
+
}),
|
|
295
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
296
|
+
d: "M16 18.5L13 22M13 22H8M13 22H18"
|
|
297
|
+
})
|
|
298
|
+
);
|
|
299
|
+
});
|
|
300
|
+
AirPlaneSeat.displayName = "AirPlaneSeat";
|
|
301
|
+
|
|
302
|
+
var AirPlaneTakeOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
303
|
+
var _b = _a.color,
|
|
304
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
305
|
+
_c = _a.size,
|
|
306
|
+
size = _c === void 0 ? 24 : _c,
|
|
307
|
+
rest = __rest(_a, ["color", "size"]);
|
|
308
|
+
return /*#__PURE__*/ React.createElement(
|
|
309
|
+
"svg",
|
|
310
|
+
__assign(
|
|
311
|
+
{
|
|
312
|
+
ref: ref,
|
|
313
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
314
|
+
width: size,
|
|
315
|
+
height: size,
|
|
316
|
+
viewBox: "0 0 24 24",
|
|
317
|
+
fill: "none",
|
|
318
|
+
stroke: color,
|
|
319
|
+
strokeWidth: "2",
|
|
320
|
+
strokeLinecap: "round",
|
|
321
|
+
strokeLinejoin: "round"
|
|
322
|
+
},
|
|
323
|
+
rest
|
|
324
|
+
),
|
|
325
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
326
|
+
d: "M2 19H18"
|
|
327
|
+
}),
|
|
328
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
329
|
+
d: "M4 13.5L2 8L4.5 6.5L6.5 9L13.5412 5.34038C15.1735 4.48683 17.0794 4.17159 18.7603 4.92643C19.6489 5.32553 20.6311 5.87707 21.4975 6.62005C22.4691 7.45319 21.9369 8.87248 20.7119 9.25281L15 11L14 13.5L9.5 15L10.5 12L4 13.5Z"
|
|
330
|
+
})
|
|
331
|
+
);
|
|
332
|
+
});
|
|
333
|
+
AirPlaneTakeOff.displayName = "AirPlaneTakeOff";
|
|
334
|
+
|
|
335
|
+
var AirPlaneTakeOff2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
336
|
+
var _b = _a.color,
|
|
337
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
338
|
+
_c = _a.size,
|
|
339
|
+
size = _c === void 0 ? 24 : _c,
|
|
340
|
+
rest = __rest(_a, ["color", "size"]);
|
|
341
|
+
return /*#__PURE__*/ React.createElement(
|
|
342
|
+
"svg",
|
|
343
|
+
__assign(
|
|
344
|
+
{
|
|
345
|
+
ref: ref,
|
|
346
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
347
|
+
width: size,
|
|
348
|
+
height: size,
|
|
349
|
+
viewBox: "0 0 24 24",
|
|
350
|
+
fill: "none",
|
|
351
|
+
stroke: color,
|
|
352
|
+
strokeWidth: "2",
|
|
353
|
+
strokeLinecap: "round",
|
|
354
|
+
strokeLinejoin: "round"
|
|
355
|
+
},
|
|
356
|
+
rest
|
|
357
|
+
),
|
|
358
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
359
|
+
d: "M22 19L6 19"
|
|
360
|
+
}),
|
|
361
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
362
|
+
d: "M20 13.5L22 8L19.5 6.5L17.5 9L10.4588 5.34038C8.82647 4.48683 6.92061 4.17159 5.23975 4.92643C4.35106 5.32553 3.36889 5.87707 2.50248 6.62005C1.53092 7.45319 2.06313 8.87248 3.28811 9.25281L9 11L10 13.5L14.5 15L13.5 12L20 13.5Z"
|
|
363
|
+
})
|
|
364
|
+
);
|
|
365
|
+
});
|
|
366
|
+
AirPlaneTakeOff2.displayName = "AirPlaneTakeOff2";
|
|
367
|
+
|
|
107
368
|
var Airplay = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
108
369
|
var _b = _a.color,
|
|
109
370
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -6063,6 +6324,39 @@ var House = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
6063
6324
|
});
|
|
6064
6325
|
House.displayName = "House";
|
|
6065
6326
|
|
|
6327
|
+
var HTML5 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
6328
|
+
var _b = _a.color,
|
|
6329
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6330
|
+
_c = _a.size,
|
|
6331
|
+
size = _c === void 0 ? 24 : _c,
|
|
6332
|
+
rest = __rest(_a, ["color", "size"]);
|
|
6333
|
+
return /*#__PURE__*/ React.createElement(
|
|
6334
|
+
"svg",
|
|
6335
|
+
__assign(
|
|
6336
|
+
{
|
|
6337
|
+
ref: ref,
|
|
6338
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6339
|
+
width: size,
|
|
6340
|
+
height: size,
|
|
6341
|
+
viewBox: "0 0 24 24",
|
|
6342
|
+
fill: "none",
|
|
6343
|
+
stroke: color,
|
|
6344
|
+
strokeWidth: "2",
|
|
6345
|
+
strokeLinecap: "round",
|
|
6346
|
+
strokeLinejoin: "round"
|
|
6347
|
+
},
|
|
6348
|
+
rest
|
|
6349
|
+
),
|
|
6350
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6351
|
+
d: "M19.5 18L21.5 2H2.5L4.5 18L12 22L19.5 18Z"
|
|
6352
|
+
}),
|
|
6353
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6354
|
+
d: "M16.5 6H7.5L7.99965 10.5H15.9996L15.4996 16L11.9996 17L8.49965 16L8 13.5"
|
|
6355
|
+
})
|
|
6356
|
+
);
|
|
6357
|
+
});
|
|
6358
|
+
HTML5.displayName = "HTML5";
|
|
6359
|
+
|
|
6066
6360
|
var Image = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
6067
6361
|
var _b = _a.color,
|
|
6068
6362
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -8107,6 +8401,36 @@ var PauseCircle = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
8107
8401
|
});
|
|
8108
8402
|
PauseCircle.displayName = "PauseCircle";
|
|
8109
8403
|
|
|
8404
|
+
var PayPal = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8405
|
+
var _b = _a.color,
|
|
8406
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8407
|
+
_c = _a.size,
|
|
8408
|
+
size = _c === void 0 ? 24 : _c,
|
|
8409
|
+
rest = __rest(_a, ["color", "size"]);
|
|
8410
|
+
return /*#__PURE__*/ React.createElement(
|
|
8411
|
+
"svg",
|
|
8412
|
+
__assign(
|
|
8413
|
+
{
|
|
8414
|
+
ref: ref,
|
|
8415
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8416
|
+
width: size,
|
|
8417
|
+
height: size,
|
|
8418
|
+
viewBox: "0 0 24 24",
|
|
8419
|
+
fill: "none",
|
|
8420
|
+
stroke: color,
|
|
8421
|
+
strokeWidth: "2",
|
|
8422
|
+
strokeLinecap: "round",
|
|
8423
|
+
strokeLinejoin: "round"
|
|
8424
|
+
},
|
|
8425
|
+
rest
|
|
8426
|
+
),
|
|
8427
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8428
|
+
d: "M8.00063 19.9611L9.52233 12.9317H12.8557C13.5061 12.9317 14.1605 12.842 14.7535 12.5762C17.8877 11.1712 18.7246 8.68085 19.0497 7.34411M8.00063 19.9611H3.00385L7.02404 1.94629L14.2533 2.07997C14.8454 2.09092 15.4419 2.14075 15.9993 2.34006C17.9458 3.03611 19.4671 4.63451 19.0497 7.34411M8.00063 19.9611L7.5009 21.9502H11.5665L13.0479 15.9555C21.9478 17.0191 22.4617 9.20548 19.0497 7.34411"
|
|
8429
|
+
})
|
|
8430
|
+
);
|
|
8431
|
+
});
|
|
8432
|
+
PayPal.displayName = "PayPal";
|
|
8433
|
+
|
|
8110
8434
|
var PenTool = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8111
8435
|
var _b = _a.color,
|
|
8112
8436
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -8864,6 +9188,45 @@ var Radio = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
8864
9188
|
});
|
|
8865
9189
|
Radio.displayName = "Radio";
|
|
8866
9190
|
|
|
9191
|
+
var ReactJS = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9192
|
+
var _b = _a.color,
|
|
9193
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
9194
|
+
_c = _a.size,
|
|
9195
|
+
size = _c === void 0 ? 24 : _c,
|
|
9196
|
+
rest = __rest(_a, ["color", "size"]);
|
|
9197
|
+
return /*#__PURE__*/ React.createElement(
|
|
9198
|
+
"svg",
|
|
9199
|
+
__assign(
|
|
9200
|
+
{
|
|
9201
|
+
ref: ref,
|
|
9202
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9203
|
+
width: size,
|
|
9204
|
+
height: size,
|
|
9205
|
+
viewBox: "0 0 24 24",
|
|
9206
|
+
fill: "none",
|
|
9207
|
+
stroke: color,
|
|
9208
|
+
strokeWidth: "2",
|
|
9209
|
+
strokeLinecap: "round",
|
|
9210
|
+
strokeLinejoin: "round"
|
|
9211
|
+
},
|
|
9212
|
+
rest
|
|
9213
|
+
),
|
|
9214
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9215
|
+
d: "M8 12C8 6.47715 9.79086 2 12 2C14.2091 2 16 6.47715 16 12C16 17.5228 14.2091 22 12 22C9.79086 22 8 17.5228 8 12Z"
|
|
9216
|
+
}),
|
|
9217
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9218
|
+
d: "M9.97529 8.58334C14.8173 5.85973 19.649 5.1815 20.7673 7.06847C21.8855 8.95544 18.8667 12.6931 14.0247 15.4167C9.18269 18.1403 4.35097 18.8185 3.23275 16.9315C2.11454 15.0446 5.13327 11.3069 9.97529 8.58334Z"
|
|
9219
|
+
}),
|
|
9220
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9221
|
+
d: "M14.0247 8.58334C18.8667 11.3069 21.8855 15.0446 20.7672 16.9315C19.649 18.8185 14.8173 18.1403 9.97529 15.4167C5.13327 12.6931 2.11454 8.95544 3.23275 7.06847C4.35097 5.18151 9.18269 5.85973 14.0247 8.58334Z"
|
|
9222
|
+
}),
|
|
9223
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9224
|
+
d: "M12 12V12.01"
|
|
9225
|
+
})
|
|
9226
|
+
);
|
|
9227
|
+
});
|
|
9228
|
+
ReactJS.displayName = "ReactJS";
|
|
9229
|
+
|
|
8867
9230
|
var RefreshCcw = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8868
9231
|
var _b = _a.color,
|
|
8869
9232
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -10664,6 +11027,36 @@ var Tag = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
10664
11027
|
});
|
|
10665
11028
|
Tag.displayName = "Tag";
|
|
10666
11029
|
|
|
11030
|
+
var TailwindCSS = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11031
|
+
var _b = _a.color,
|
|
11032
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11033
|
+
_c = _a.size,
|
|
11034
|
+
size = _c === void 0 ? 24 : _c,
|
|
11035
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11036
|
+
return /*#__PURE__*/ React.createElement(
|
|
11037
|
+
"svg",
|
|
11038
|
+
__assign(
|
|
11039
|
+
{
|
|
11040
|
+
ref: ref,
|
|
11041
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11042
|
+
width: size,
|
|
11043
|
+
height: size,
|
|
11044
|
+
viewBox: "0 0 24 24",
|
|
11045
|
+
fill: "none",
|
|
11046
|
+
stroke: color,
|
|
11047
|
+
strokeWidth: "2",
|
|
11048
|
+
strokeLinecap: "round",
|
|
11049
|
+
strokeLinejoin: "round"
|
|
11050
|
+
},
|
|
11051
|
+
rest
|
|
11052
|
+
),
|
|
11053
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11054
|
+
d: "M12 6.036c-2.667 0-4.333 1.325-5 3.976 1-1.325 2.167-1.822 3.5-1.491.761.189 1.305.738 1.906 1.345C13.387 10.855 14.522 12 17 12c2.667 0 4.333-1.325 5-3.976-1 1.325-2.166 1.822-3.5 1.491-.761-.189-1.305-.738-1.907-1.345-.98-.99-2.114-2.134-4.593-2.134zM7 12c-2.667 0-4.333 1.325-5 3.976 1-1.326 2.167-1.822 3.5-1.491.761.189 1.305.738 1.907 1.345.98.989 2.115 2.134 4.594 2.134 2.667 0 4.333-1.325 5-3.976-1 1.325-2.167 1.822-3.5 1.491-.761-.189-1.305-.738-1.906-1.345C10.613 13.145 9.478 12 7 12z"
|
|
11055
|
+
})
|
|
11056
|
+
);
|
|
11057
|
+
});
|
|
11058
|
+
TailwindCSS.displayName = "TailwindCSS";
|
|
11059
|
+
|
|
10667
11060
|
var Target = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
10668
11061
|
var _b = _a.color,
|
|
10669
11062
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -12794,6 +13187,14 @@ ZoomOut.displayName = "ZoomOut";
|
|
|
12794
13187
|
export {
|
|
12795
13188
|
Accessibility,
|
|
12796
13189
|
Activity,
|
|
13190
|
+
AirPlane,
|
|
13191
|
+
AirPlaneLanding,
|
|
13192
|
+
AirPlaneLanding2,
|
|
13193
|
+
AirPlaneMode,
|
|
13194
|
+
AirPlaneModeOff,
|
|
13195
|
+
AirPlaneSeat,
|
|
13196
|
+
AirPlaneTakeOff,
|
|
13197
|
+
AirPlaneTakeOff2,
|
|
12797
13198
|
Airplay,
|
|
12798
13199
|
AlarmClock,
|
|
12799
13200
|
AlarmClockCheck,
|
|
@@ -12936,6 +13337,7 @@ export {
|
|
|
12936
13337
|
GoLang,
|
|
12937
13338
|
Google,
|
|
12938
13339
|
Grid,
|
|
13340
|
+
HTML5,
|
|
12939
13341
|
HardDrive,
|
|
12940
13342
|
Hash,
|
|
12941
13343
|
Headphones,
|
|
@@ -12993,6 +13395,7 @@ export {
|
|
|
12993
13395
|
Paperclip,
|
|
12994
13396
|
Pause,
|
|
12995
13397
|
PauseCircle,
|
|
13398
|
+
PayPal,
|
|
12996
13399
|
PenTool,
|
|
12997
13400
|
Percent,
|
|
12998
13401
|
Phone,
|
|
@@ -13013,6 +13416,7 @@ export {
|
|
|
13013
13416
|
Printer,
|
|
13014
13417
|
Python,
|
|
13015
13418
|
Radio,
|
|
13419
|
+
ReactJS,
|
|
13016
13420
|
RefreshCcw,
|
|
13017
13421
|
RefreshCw,
|
|
13018
13422
|
Repeat,
|
|
@@ -13055,6 +13459,7 @@ export {
|
|
|
13055
13459
|
Table,
|
|
13056
13460
|
Tablet,
|
|
13057
13461
|
Tag,
|
|
13462
|
+
TailwindCSS,
|
|
13058
13463
|
Target,
|
|
13059
13464
|
Terminal,
|
|
13060
13465
|
TextDown,
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.7",
|
|
3
3
|
"name": "@deemlol/next-icons",
|
|
4
4
|
"description": "A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration.",
|
|
5
5
|
"main": "build/index.js",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
16
|
-
"@babel/preset-env": "^7.26.
|
|
16
|
+
"@babel/preset-env": "^7.26.7",
|
|
17
17
|
"@babel/preset-react": "^7.26.3",
|
|
18
|
-
"@types/react": "^19.0.
|
|
18
|
+
"@types/react": "^19.0.8",
|
|
19
19
|
"babel-preset-env": "^1.7.0",
|
|
20
20
|
"eslint": "^8.57.1",
|
|
21
21
|
"eslint-config-airbnb": "^19.0.4",
|