@bigbinary/neeto-icons-rn 1.20.29 → 1.20.30
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/MyPreferences.js +48 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, Rect } from "react-native-svg";
|
|
3
|
+
const SvgMyPreferences = (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="M16.568 3a.5.5 0 0 1 .47.331l.254.708c.04.11.119.204.221.264l.753.434a.5.5 0 0 0 .339.06l.74-.134a.5.5 0 0 1 .523.242l.4.69a.5.5 0 0 1-.05.573l-.486.574a.5.5 0 0 0-.119.323v.87a.5.5 0 0 0 .119.323l.486.574a.5.5 0 0 1 .05.573l-.4.69a.5.5 0 0 1-.522.242l-.74-.133a.5.5 0 0 0-.339.058l-.753.435a.5.5 0 0 0-.221.264l-.255.708a.5.5 0 0 1-.47.331h-.8a.5.5 0 0 1-.471-.331l-.254-.708a.5.5 0 0 0-.22-.264l-.755-.434c-.102-.06-.222-.08-.338-.06l-.74.134a.5.5 0 0 1-.523-.242l-.4-.69a.5.5 0 0 1 .05-.573l.486-.574a.5.5 0 0 0 .119-.323v-.87a.5.5 0 0 0-.119-.323l-.48-.574a.5.5 0 0 1-.05-.573l.4-.69a.5.5 0 0 1 .521-.242l.74.133a.5.5 0 0 0 .339-.059l.754-.434a.5.5 0 0 0 .22-.264l.255-.708A.5.5 0 0 1 15.768 3z"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M16.168 8.875a1.375 1.375 0 1 0 0-2.75 1.375 1.375 0 0 0 0 2.75"
|
|
24
|
+
/>
|
|
25
|
+
<Rect
|
|
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
|
+
/>
|
|
46
|
+
</Svg>
|
|
47
|
+
);
|
|
48
|
+
export default SvgMyPreferences;
|
package/dist/icons/index.js
CHANGED
|
@@ -209,6 +209,7 @@ export { default as MoveToBottom } from "./MoveToBottom";
|
|
|
209
209
|
export { default as MoveToTop } from "./MoveToTop";
|
|
210
210
|
export { default as Movie } from "./Movie";
|
|
211
211
|
export { default as MultipleChoice } from "./MultipleChoice";
|
|
212
|
+
export { default as MyPreferences } from "./MyPreferences";
|
|
212
213
|
export { default as NavLinks } from "./NavLinks";
|
|
213
214
|
export { default as NewChat } from "./NewChat";
|
|
214
215
|
export { default as Notes } from "./Notes";
|