@bigbinary/neeto-icons-rn 1.20.65 → 1.20.66
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/Make.js +68 -0
- package/dist/misc/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Defs, LinearGradient, Stop, Path } from "react-native-svg";
|
|
3
|
+
const SvgMake = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 100 100"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Defs>
|
|
13
|
+
<LinearGradient
|
|
14
|
+
id="a"
|
|
15
|
+
x1={6.25}
|
|
16
|
+
y1={81.25}
|
|
17
|
+
x2={50}
|
|
18
|
+
y2={0}
|
|
19
|
+
gradientUnits="userSpaceOnUse"
|
|
20
|
+
>
|
|
21
|
+
<Stop stopColor="#F0F" />
|
|
22
|
+
<Stop offset={0.17} stopColor="#E90CF9" />
|
|
23
|
+
<Stop offset={0.54} stopColor="#C023ED" />
|
|
24
|
+
<Stop offset={0.73} stopColor="#B02DE9" />
|
|
25
|
+
</LinearGradient>
|
|
26
|
+
<LinearGradient
|
|
27
|
+
id="b"
|
|
28
|
+
x1={0.01}
|
|
29
|
+
y1={99.99}
|
|
30
|
+
x2={100.01}
|
|
31
|
+
y2={-0.01}
|
|
32
|
+
gradientUnits="userSpaceOnUse"
|
|
33
|
+
>
|
|
34
|
+
<Stop stopColor="#B02DE9" />
|
|
35
|
+
<Stop offset={0.8} stopColor="#6D00CC" />
|
|
36
|
+
</LinearGradient>
|
|
37
|
+
<LinearGradient
|
|
38
|
+
id="c"
|
|
39
|
+
x1={0.02}
|
|
40
|
+
y1={100.02}
|
|
41
|
+
x2={100.02}
|
|
42
|
+
y2={0.02}
|
|
43
|
+
gradientUnits="userSpaceOnUse"
|
|
44
|
+
>
|
|
45
|
+
<Stop stopColor="#F0F" />
|
|
46
|
+
<Stop offset={0.09} stopColor="#E90CF9" />
|
|
47
|
+
<Stop offset={0.23} stopColor="#C023ED" />
|
|
48
|
+
<Stop offset={0.3} stopColor="#B02DE9" />
|
|
49
|
+
<Stop offset={0.42} stopColor="#A42BE3" />
|
|
50
|
+
<Stop offset={0.63} stopColor="#8626D5" />
|
|
51
|
+
<Stop offset={0.85} stopColor="#6021C3" />
|
|
52
|
+
</LinearGradient>
|
|
53
|
+
</Defs>
|
|
54
|
+
<Path
|
|
55
|
+
d="M29.12 16.81L.25 74.24a1.5 1.5 0 001.08 3.22l15.55 7.82c1.3.66 2.87.16 3.23-.77l28.86-57.43a1.5 1.5 0 00-1.08-3.22L32.34 16.05c-.83-.42-1.92-.11-3.22.76z"
|
|
56
|
+
fill="url(#a)"
|
|
57
|
+
/>
|
|
58
|
+
<Path
|
|
59
|
+
d="M80.2 15.96h17.41c1.32 0 2.4 1.08 2.4 2.4v64.27a2.4 2.4 0 01-2.4 2.4H80.2a2.4 2.4 0 01-2.41-2.4V18.37c0-1.33 1.08-2.41 2.41-2.41z"
|
|
60
|
+
fill="url(#b)"
|
|
61
|
+
/>
|
|
62
|
+
<Path
|
|
63
|
+
d="M53.42 17.04l-12.36 62.6a1.5 1.5 0 001.89 2.81l17.06 3.44a1.5 1.5 0 001.84-1.89l12.35-62.59a1.5 1.5 0 00-1.89-2.81l-17.07-3.45a1.5 1.5 0 00-1.82 1.89z"
|
|
64
|
+
fill="url(#c)"
|
|
65
|
+
/>
|
|
66
|
+
</Svg>
|
|
67
|
+
);
|
|
68
|
+
export default SvgMake;
|
package/dist/misc/index.js
CHANGED
|
@@ -23,6 +23,7 @@ export { default as Jcb } from "./Jcb";
|
|
|
23
23
|
export { default as Jitsi } from "./Jitsi";
|
|
24
24
|
export { default as Linear } from "./Linear";
|
|
25
25
|
export { default as MailChimp } from "./MailChimp";
|
|
26
|
+
export { default as Make } from "./Make";
|
|
26
27
|
export { default as Mastercard } from "./Mastercard";
|
|
27
28
|
export { default as Megaphone } from "./Megaphone";
|
|
28
29
|
export { default as Microsoft } from "./Microsoft";
|