@bigbinary/neeto-icons-rn 1.20.2 → 1.20.3

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.
@@ -172,7 +172,6 @@ export { default as RightArrow } from "./RightArrow";
172
172
  export { default as Robot } from "./Robot";
173
173
  export { default as Scale } from "./Scale";
174
174
  export { default as Search } from "./Search";
175
- export { default as Sections } from "./Sections";
176
175
  export { default as Security } from "./Security";
177
176
  export { default as Send } from "./Send";
178
177
  export { default as SendPlane } from "./SendPlane";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.2",
3
+ "version": "1.20.3",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",
@@ -1,20 +0,0 @@
1
- import * as React from "react";
2
- import Svg, { Path } from "react-native-svg";
3
- const SvgSections = (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="M18 4H6a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M18 14H6a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2"
17
- />
18
- </Svg>
19
- );
20
- export default SvgSections;