@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.
- package/README.md +35 -27
- package/build/icons/accessibility.d.ts +21 -0
- 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/alarmClock.d.ts +21 -0
- package/build/icons/alarmClockCheck.d.ts +21 -0
- package/build/icons/alarmClockMinus.d.ts +21 -0
- package/build/icons/alarmClockOff.d.ts +21 -0
- package/build/icons/alarmClockPlus.d.ts +21 -0
- package/build/icons/appWindow.d.ts +21 -0
- package/build/icons/appWindowMac.d.ts +21 -0
- package/build/icons/apple.d.ts +21 -0
- package/build/icons/archiveRestore.d.ts +21 -0
- package/build/icons/cloudflare.d.ts +21 -0
- package/build/icons/cookie.d.ts +21 -0
- package/build/icons/deno.d.ts +21 -0
- package/build/icons/discord.d.ts +21 -0
- package/build/icons/golang.d.ts +21 -0
- package/build/icons/google.d.ts +21 -0
- package/build/icons/html.d.ts +21 -0
- package/build/icons/javascript.d.ts +21 -0
- package/build/icons/nodejs.d.ts +21 -0
- package/build/icons/npmjs.d.ts +21 -0
- package/build/icons/paypal.d.ts +21 -0
- package/build/icons/python.d.ts +21 -0
- package/build/icons/react.d.ts +21 -0
- package/build/icons/soundcloud.d.ts +21 -0
- package/build/icons/spotify.d.ts +21 -0
- package/build/icons/tailwindCSS.d.ts +21 -0
- package/build/icons/textDown.d.ts +21 -0
- package/build/icons/textSize.d.ts +21 -0
- package/build/icons/textUp.d.ts +21 -0
- package/build/icons/typescript.d.ts +21 -0
- package/build/index.d.ts +38 -0
- package/build/index.js +1602 -36
- 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 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;
|