@bigbinary/neeto-icons-rn 1.20.40 → 1.20.42
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/Help.js +13 -15
- package/dist/icons/MyPreferences.js +12 -32
- package/dist/misc/Razorpay.js +1 -0
- package/package.json +1 -1
package/dist/icons/Help.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, Circle, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
3
|
const SvgHelp = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -8,20 +8,18 @@ const SvgHelp = (props) => (
|
|
|
8
8
|
fill="none"
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
|
-
<
|
|
12
|
-
stroke={props.color}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h.01"
|
|
24
|
-
/>
|
|
11
|
+
<G clipPath="url(#Help_svg__a)">
|
|
12
|
+
<Circle cx={12} cy={12} r={10} stroke={props.color} strokeWidth={1.5} />
|
|
13
|
+
<Path
|
|
14
|
+
fill={props.color}
|
|
15
|
+
d="M10.896 14.806q0-.588.09-1.103.098-.515.36-.98.22-.441.514-.71a8 8 0 0 1 .653-.54q.36-.27.752-.686.327-.36.433-.727.114-.368.114-.792 0-.31-.073-.58a1.16 1.16 0 0 0-.245-.466 1.38 1.38 0 0 0-.662-.458 2.638 2.638 0 0 0-1.585-.033q-.351.107-.588.328a1.3 1.3 0 0 0-.376.53 1.8 1.8 0 0 0-.106.679H8.38q.066-.769.392-1.438.327-.67.882-1.087a3.2 3.2 0 0 1 1.079-.555A4 4 0 0 1 11.942 6q.865 0 1.633.27.777.269 1.291.874.375.425.564.972.195.54.196 1.119 0 .776-.335 1.438a5 5 0 0 1-.842 1.209q-.27.285-.547.522a11 11 0 0 0-.514.45 2.2 2.2 0 0 0-.393.482q-.22.375-.253.678-.033.294-.033.792zM10.904 18v-1.977h1.806V18z"
|
|
16
|
+
/>
|
|
17
|
+
</G>
|
|
18
|
+
<Defs>
|
|
19
|
+
<ClipPath id="Help_svg__a">
|
|
20
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
21
|
+
</ClipPath>
|
|
22
|
+
</Defs>
|
|
25
23
|
</Svg>
|
|
26
24
|
);
|
|
27
25
|
export default SvgHelp;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, { Path,
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
3
|
const SvgMyPreferences = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -8,41 +8,21 @@ const SvgMyPreferences = (props) => (
|
|
|
8
8
|
fill="none"
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
|
-
<
|
|
11
|
+
<G
|
|
12
12
|
stroke={props.color}
|
|
13
13
|
strokeLinecap="round"
|
|
14
14
|
strokeLinejoin="round"
|
|
15
15
|
strokeWidth={1.5}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
width={3}
|
|
27
|
-
height={8}
|
|
28
|
-
x={2}
|
|
29
|
-
y={12}
|
|
30
|
-
stroke={props.color}
|
|
31
|
-
strokeWidth={1.5}
|
|
32
|
-
rx={1}
|
|
33
|
-
/>
|
|
34
|
-
<Path
|
|
35
|
-
stroke={props.color}
|
|
36
|
-
strokeLinecap="round"
|
|
37
|
-
strokeWidth={1.5}
|
|
38
|
-
d="m5.5 13 2.362-.787c.405-.135.85-.09 1.22.126l4.138 2.414c.704.411.937 1.319.517 2.018v0c-.41.683-1.29.913-1.981.518L9.5 16"
|
|
39
|
-
/>
|
|
40
|
-
<Path
|
|
41
|
-
stroke={props.color}
|
|
42
|
-
strokeLinecap="round"
|
|
43
|
-
strokeWidth={1.5}
|
|
44
|
-
d="m14 17 5.092-1.175a1.59 1.59 0 0 1 1.865 1.046v0a1.59 1.59 0 0 1-1.123 2.045L12.26 20.81a2.12 2.12 0 0 1-1.46-.16l-3.514-1.757a2.12 2.12 0 0 0-1.62-.115L5 19"
|
|
45
|
-
/>
|
|
16
|
+
clipPath="url(#MyPreferences_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M5 7a4 4 0 1 0 8 0 4 4 0 0 0-8 0M3 21v-2a4 4 0 0 1 4-4h4M18.932 13a.53.53 0 0 1 .31.101c.091.066.16.16.198.267l.274.786a.56.56 0 0 0 .239.293l.813.484c.11.065.24.088.366.065l.799-.148a.53.53 0 0 1 .323.042.55.55 0 0 1 .241.227l.432.766a.57.57 0 0 1-.054.637l-.524.638a.56.56 0 0 0-.128.359v.966c0 .132.045.259.128.36l.524.637a.56.56 0 0 1 .054.637l-.432.766a.55.55 0 0 1-.24.227.53.53 0 0 1-.323.042l-.8-.148a.53.53 0 0 0-.365.065l-.814.484a.56.56 0 0 0-.238.293l-.274.786a.55.55 0 0 1-.198.267.53.53 0 0 1-.311.101h-.864a.53.53 0 0 1-.31-.101.55.55 0 0 1-.198-.267l-.274-.786a.56.56 0 0 0-.238-.293l-.814-.484a.53.53 0 0 0-.366-.065l-.799.148a.53.53 0 0 1-.324-.042.55.55 0 0 1-.24-.227l-.432-.766a.57.57 0 0 1 .054-.637l.524-.638a.56.56 0 0 0 .128-.359v-.966a.56.56 0 0 0-.128-.36l-.519-.637a.56.56 0 0 1-.054-.637l.432-.766a.526.526 0 0 1 .564-.269l.799.148c.125.023.255 0 .365-.065l.815-.484a.56.56 0 0 0 .238-.293l.274-.786a.55.55 0 0 1 .195-.265.53.53 0 0 1 .308-.103z" />
|
|
19
|
+
<Path d="M18.5 19.528c.82 0 1.485-.684 1.485-1.528s-.665-1.528-1.485-1.528-1.485.684-1.485 1.528.665 1.528 1.485 1.528" />
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="MyPreferences_svg__a">
|
|
23
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
46
26
|
</Svg>
|
|
47
27
|
);
|
|
48
28
|
export default SvgMyPreferences;
|
package/dist/misc/Razorpay.js
CHANGED