@bigbinary/neeto-icons-rn 1.20.5 → 1.20.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/dist/icons/Split.js +27 -0
- package/dist/icons/index.js +1 -0
- package/dist/misc/GoogleAnalytics.js +21 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgSplit = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={props.size}
|
|
7
|
+
height={props.size}
|
|
8
|
+
fill="none"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
d="M8 4H5c-.53 0-1.04.24-1.414.67A2.46 2.46 0 0 0 3 6.285v11.428c0 .607.21 1.188.586 1.617C3.96 19.759 4.47 20 5 20h3m8-16h3c.53 0 1.04.24 1.414.67.375.428.586 1.01.586 1.616v11.428c0 .607-.21 1.188-.586 1.617-.375.428-.884.669-1.414.669h-3"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeDasharray="3 3"
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M12 2v20"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgSplit;
|
package/dist/icons/index.js
CHANGED
|
@@ -184,6 +184,7 @@ export { default as SidebarOpen } from "./SidebarOpen";
|
|
|
184
184
|
export { default as Smiley } from "./Smiley";
|
|
185
185
|
export { default as Sparkle } from "./Sparkle";
|
|
186
186
|
export { default as SpecificWindow } from "./SpecificWindow";
|
|
187
|
+
export { default as Split } from "./Split";
|
|
187
188
|
export { default as Status } from "./Status";
|
|
188
189
|
export { default as Subdomain } from "./Subdomain";
|
|
189
190
|
export { default as Suitcase } from "./Suitcase";
|
|
@@ -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";
|