@bigbinary/neeto-icons-rn 1.20.15 → 1.20.16

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.
@@ -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;
@@ -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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.15",
3
+ "version": "1.20.16",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",