@bigbinary/neeto-icons-rn 1.20.15 → 1.20.17
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/Bug.js +27 -0
- package/dist/icons/ClearCache.js +26 -0
- package/dist/icons/ExpandSize.js +20 -0
- package/dist/icons/index.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgBug = (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
|
+
<G
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
clipPath="url(#Bug_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M9 9V8a3 3 0 1 1 6 0v1M8 9h8a6 6 0 0 1 1 3v3a5 5 0 1 1-10 0v-3a6 6 0 0 1 1-3M3 13h4M17 13h4M12 20v-6M4 19l3.35-2M20 19l-3.35-2M4 7l3.75 2.4M20 7l-3.75 2.4" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Bug_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgBug;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgClearCache = (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="M20 6.375H4M15.541 21H8.46a2.25 2.25 0 0 1-2.244-2.077L5.25 6.375h13.5l-.965 12.548A2.25 2.25 0 0 1 15.54 21M9.187 3h5.626a1.125 1.125 0 0 1 1.124 1.125v2.25H8.063v-2.25A1.125 1.125 0 0 1 9.187 3"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
d="m9 13 2 2 4-4"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgClearCache;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgExpandSize = (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.2}
|
|
16
|
+
d="M16 4h4m0 0v4m0-4-6 6M8 20H4m0 0v-4m0 4 6-6m6 6h4m0 0v-4m0 4-6-6M8 4H4m0 0v4m0-4 6 6"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgExpandSize;
|
package/dist/icons/index.js
CHANGED
|
@@ -14,6 +14,7 @@ export { default as Book } from "./Book";
|
|
|
14
14
|
export { default as BookOpen } from "./BookOpen";
|
|
15
15
|
export { default as Braces } from "./Braces";
|
|
16
16
|
export { default as Browser } from "./Browser";
|
|
17
|
+
export { default as Bug } from "./Bug";
|
|
17
18
|
export { default as Bulb } from "./Bulb";
|
|
18
19
|
export { default as Css3 } from "./Css3";
|
|
19
20
|
export { default as Calendar } from "./Calendar";
|
|
@@ -34,6 +35,7 @@ export { default as Checkbox } from "./Checkbox";
|
|
|
34
35
|
export { default as CheckboxInactive } from "./CheckboxInactive";
|
|
35
36
|
export { default as Checkmark } from "./Checkmark";
|
|
36
37
|
export { default as Chrome } from "./Chrome";
|
|
38
|
+
export { default as ClearCache } from "./ClearCache";
|
|
37
39
|
export { default as Clock } from "./Clock";
|
|
38
40
|
export { default as Close } from "./Close";
|
|
39
41
|
export { default as CloseCircle } from "./CloseCircle";
|
|
@@ -75,6 +77,7 @@ export { default as EntireScreen } from "./EntireScreen";
|
|
|
75
77
|
export { default as Equals } from "./Equals";
|
|
76
78
|
export { default as Error } from "./Error";
|
|
77
79
|
export { default as Expand } from "./Expand";
|
|
80
|
+
export { default as ExpandSize } from "./ExpandSize";
|
|
78
81
|
export { default as ExternalLink } from "./ExternalLink";
|
|
79
82
|
export { default as Facebook } from "./Facebook";
|
|
80
83
|
export { default as Favorite } from "./Favorite";
|