@bigbinary/neeto-icons-rn 1.0.4 → 1.0.6

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.
@@ -127,7 +127,6 @@ export { default as Pause } from "./Pause";
127
127
  export { default as Phone } from "./Phone";
128
128
  export { default as Play } from "./Play";
129
129
  export { default as Plus } from "./Plus";
130
- export { default as PlusSolid } from "./PlusSolid";
131
130
  export { default as Print } from "./Print";
132
131
  export { default as Puzzle } from "./Puzzle";
133
132
  export { default as QrCode } from "./QrCode";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",
@@ -1,23 +0,0 @@
1
- import * as React from "react";
2
- import Svg, { Path } from "react-native-svg";
3
- const SvgPlusSolid = (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
- fill={props.color}
13
- d="M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z"
14
- />
15
- <Path
16
- fill="#F8F9F9"
17
- fillRule="evenodd"
18
- d="M12.833 6.75a.75.75 0 0 0-1.5 0v4.583H6.75a.75.75 0 0 0 0 1.5h4.583v4.584a.75.75 0 0 0 1.5 0v-4.584h4.584a.75.75 0 0 0 0-1.5h-4.584V6.75Z"
19
- clipRule="evenodd"
20
- />
21
- </Svg>
22
- );
23
- export default SvgPlusSolid;