@deemlol/next-icons 0.1.4 → 0.1.6

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.
Files changed (42) hide show
  1. package/README.md +35 -27
  2. package/build/icons/accessibility.d.ts +21 -0
  3. package/build/icons/airplane.d.ts +21 -0
  4. package/build/icons/airplaneLanding.d.ts +21 -0
  5. package/build/icons/airplaneLanding2.d.ts +21 -0
  6. package/build/icons/airplaneMode.d.ts +21 -0
  7. package/build/icons/airplaneModeOff.d.ts +21 -0
  8. package/build/icons/airplaneSeat.d.ts +21 -0
  9. package/build/icons/airplaneTakeOff.d.ts +21 -0
  10. package/build/icons/airplaneTakeOff2.d.ts +21 -0
  11. package/build/icons/alarmClock.d.ts +21 -0
  12. package/build/icons/alarmClockCheck.d.ts +21 -0
  13. package/build/icons/alarmClockMinus.d.ts +21 -0
  14. package/build/icons/alarmClockOff.d.ts +21 -0
  15. package/build/icons/alarmClockPlus.d.ts +21 -0
  16. package/build/icons/appWindow.d.ts +21 -0
  17. package/build/icons/appWindowMac.d.ts +21 -0
  18. package/build/icons/apple.d.ts +21 -0
  19. package/build/icons/archiveRestore.d.ts +21 -0
  20. package/build/icons/cloudflare.d.ts +21 -0
  21. package/build/icons/cookie.d.ts +21 -0
  22. package/build/icons/deno.d.ts +21 -0
  23. package/build/icons/discord.d.ts +21 -0
  24. package/build/icons/golang.d.ts +21 -0
  25. package/build/icons/google.d.ts +21 -0
  26. package/build/icons/html.d.ts +21 -0
  27. package/build/icons/javascript.d.ts +21 -0
  28. package/build/icons/nodejs.d.ts +21 -0
  29. package/build/icons/npmjs.d.ts +21 -0
  30. package/build/icons/paypal.d.ts +21 -0
  31. package/build/icons/python.d.ts +21 -0
  32. package/build/icons/react.d.ts +21 -0
  33. package/build/icons/soundcloud.d.ts +21 -0
  34. package/build/icons/spotify.d.ts +21 -0
  35. package/build/icons/tailwindCSS.d.ts +21 -0
  36. package/build/icons/textDown.d.ts +21 -0
  37. package/build/icons/textSize.d.ts +21 -0
  38. package/build/icons/textUp.d.ts +21 -0
  39. package/build/icons/typescript.d.ts +21 -0
  40. package/build/index.d.ts +38 -0
  41. package/build/index.js +1602 -36
  42. package/package.json +3 -3
package/README.md CHANGED
@@ -1,55 +1,63 @@
1
- # Next-Icons
1
+ [![NextIcons](./media/Banner.png)](https://www.nexticons.com)
2
2
 
3
3
  ![NPM Downloads](https://img.shields.io/npm/d18m/@deemlol/next-icons)
4
4
  ![NPM Version](https://img.shields.io/npm/v/@deemlol/next-icons)
5
5
  ![NPM License](https://img.shields.io/npm/l/@deemlol/next-icons)
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
- ### Documentation
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
- npm i @deemlol/next-icons@latest
11
+ ```bash
12
+ yarn add @deemlol/next-icons@latest
13
+ # or
14
+ npm install @deemlol/next-icons@latest
15
+ ```
22
16
 
23
- ### Usage
17
+ ## Example Usage
24
18
 
25
19
  ```javascript
26
- import { Check } from "@deemlol/next-icons";
27
-
28
- export default function Home() {
29
- return <Check />;
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
- You can also include the whole icon pack:
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 Home() {
39
- return <Icon.Check />;
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
- ### Props
45
+ ## Configuration
44
46
 
45
- Our icons can be also configured with inline props.
47
+ _Our icons can be also configured with inline props_
46
48
 
47
49
  ```javascript
48
- <Check size={40} color="#FF0000" />
50
+ <Cookie size={40} color="#FF0000" className="flex items-center" />
49
51
  ```
50
52
 
51
- > If you need, you can also use className="" in the props.
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
- # Sponsor Us
61
+ ## License
54
62
 
55
- Do you like our icons? You can sponsor us via [Ko-Fi](https://ko-fi.com/deemdev), it will help us a lot!
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 Accessibility: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Accessibility;
@@ -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 AlarmClock: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AlarmClock;
@@ -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 AlarmClockCheck: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AlarmClockCheck;
@@ -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 AlarmClockMinus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AlarmClockMinus;
@@ -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 AlarmClockOff: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AlarmClockOff;
@@ -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 AlarmClockPlus: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AlarmClockPlus;
@@ -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 AppWindow: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AppWindow;
@@ -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 AppWindowMac: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default AppWindowMac;
@@ -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 Apple: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Apple;
@@ -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 ArchiveRestore: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default ArchiveRestore;
@@ -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 CloudFlare: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default CloudFlare;
@@ -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 Cookie: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Cookie;
@@ -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 Deno: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Deno;
@@ -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 Discord: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Discord;
@@ -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 GoLang: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default GoLang;
@@ -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 Google: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
21
+ export default Google;