@bigbinary/neeto-icons-rn 1.20.8 → 1.20.9

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,20 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgBulb = (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="M3 12h1m8-9v1m8 8h1M5.6 5.6l.7.7m12.1-.7-.7.7M9 16a5 5 0 1 1 6 0 3.5 3.5 0 0 0-1 3 2 2 0 0 1-4 0 3.5 3.5 0 0 0-1-3M9.7 17h4.6"
17
+ />
18
+ </Svg>
19
+ );
20
+ export default SvgBulb;
@@ -12,6 +12,7 @@ export { default as Bank } from "./Bank";
12
12
  export { default as Book } from "./Book";
13
13
  export { default as BookOpen } from "./BookOpen";
14
14
  export { default as Braces } from "./Braces";
15
+ export { default as Bulb } from "./Bulb";
15
16
  export { default as Css3 } from "./Css3";
16
17
  export { default as Calendar } from "./Calendar";
17
18
  export { default as Camera } from "./Camera";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.8",
3
+ "version": "1.20.9",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",