@bigbinary/neeto-icons-rn 1.20.5 → 1.20.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/dist/misc/GoogleAnalytics.js +21 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgGoogleAnalytics = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={props.size}
|
|
7
|
+
height={props.size}
|
|
8
|
+
viewBox="0 0 256 284"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
fill="#F9AB00"
|
|
13
|
+
d="M256.003 247.933a35.224 35.224 0 0 1-39.376 35.161c-18.044-2.67-31.266-18.371-30.826-36.606V36.845C185.365 18.591 198.62 2.881 216.687.24a35.22 35.22 0 0 1 39.316 35.16z"
|
|
14
|
+
/>
|
|
15
|
+
<Path
|
|
16
|
+
fill="#E37400"
|
|
17
|
+
d="M35.101 213.193c19.386 0 35.101 15.716 35.101 35.101 0 19.386-15.715 35.101-35.101 35.101S0 267.68 0 248.295s15.715-35.102 35.101-35.102m92.358-106.387c-19.477 1.068-34.59 17.406-34.137 36.908v94.285c0 25.588 11.259 41.122 27.755 44.433a35.16 35.16 0 0 0 42.146-34.56V142.089a35.22 35.22 0 0 0-35.764-35.282z"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
export default SvgGoogleAnalytics;
|
package/dist/misc/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as Edge } from "./Edge";
|
|
|
5
5
|
export { default as Firefox } from "./Firefox";
|
|
6
6
|
export { default as Github } from "./Github";
|
|
7
7
|
export { default as Google } from "./Google";
|
|
8
|
+
export { default as GoogleAnalytics } from "./GoogleAnalytics";
|
|
8
9
|
export { default as GoogleCalendar } from "./GoogleCalendar";
|
|
9
10
|
export { default as GoogleMeet } from "./GoogleMeet";
|
|
10
11
|
export { default as Instagram } from "./Instagram";
|