@bigbinary/neeto-icons-rn 1.20.13 → 1.20.14
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/Facebook.js +5 -2
- package/dist/icons/Linkedin.js +5 -6
- package/dist/icons/Twitter.js +15 -11
- package/package.json +1 -1
package/dist/icons/Facebook.js
CHANGED
|
@@ -9,8 +9,11 @@ const SvgFacebook = (props) => (
|
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
11
|
<Path
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
d="M7 10v4h3v7h4v-7h3l1-4h-4V8a1 1 0 0 1 1-1h3V3h-3a5 5 0 0 0-5 5v2z"
|
|
14
17
|
/>
|
|
15
18
|
</Svg>
|
|
16
19
|
);
|
package/dist/icons/Linkedin.js
CHANGED
|
@@ -9,12 +9,11 @@ const SvgLinkedin = (props) => (
|
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
11
|
<Path
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
d="M9.967 15.825H8.076V9.681h1.89zm-.945-6.932Q8 8.893 8 7.946q0-.393.295-.67Q8.59 7 9.022 7q1.023.001 1.023.946 0 .948-1.023.947m7.958 6.932h-1.93v-3.427q-.001-1.339-.947-1.34-.748 0-.985.75-.077.117-.078.473v3.544h-1.93V11.65q-.001-1.419-.039-1.968h1.654l.117.827c.435-.658 1.064-.986 1.93-.986q.987 0 1.595.688.613.689.613 1.99z"
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
d="M7.5 10.875V16.5m0-9v.011M12 16.5v-5.625m4.5 5.625v-3.375a2.25 2.25 0 0 0-4.5 0M5.25 3h13.5A2.25 2.25 0 0 1 21 5.25v13.5A2.25 2.25 0 0 1 18.75 21H5.25A2.25 2.25 0 0 1 3 18.75V5.25A2.25 2.25 0 0 1 5.25 3"
|
|
18
17
|
/>
|
|
19
18
|
</Svg>
|
|
20
19
|
);
|
package/dist/icons/Twitter.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
3
|
const SvgTwitter = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -8,16 +8,20 @@ const SvgTwitter = (props) => (
|
|
|
8
8
|
fill="none"
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
d="
|
|
19
|
-
|
|
20
|
-
|
|
11
|
+
<G
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
clipPath="url(#Twitter_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="m4 4 11.733 16H20L8.267 4zM4 20l6.768-6.768m2.46-2.46L20 4" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Twitter_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
21
25
|
</Svg>
|
|
22
26
|
);
|
|
23
27
|
export default SvgTwitter;
|