@bigbinary/neeto-icons-rn 1.20.7 → 1.20.8

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,31 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgLayers = (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
+ fillRule="evenodd"
14
+ d="m4.972 7.834 7.084 4.25 7.085-4.25-7.085-4.25zm-1.487-.858a1 1 0 0 0 0 1.715l8.057 4.834a1 1 0 0 0 1.029 0l8.056-4.834a1 1 0 0 0 0-1.715l-8.056-4.833a1 1 0 0 0-1.03 0z"
15
+ clipRule="evenodd"
16
+ />
17
+ <Path
18
+ fill={props.color}
19
+ fillRule="evenodd"
20
+ d="M3.42 11.936a.75.75 0 0 1 1.034-.238l7.486 4.678a.25.25 0 0 0 .259.004l7.977-4.693a.75.75 0 1 1 .76 1.293l-7.977 4.693a1.75 1.75 0 0 1-1.814-.025L3.659 12.97a.75.75 0 0 1-.239-1.034"
21
+ clipRule="evenodd"
22
+ />
23
+ <Path
24
+ fill={props.color}
25
+ fillRule="evenodd"
26
+ d="M3.42 16.186a.75.75 0 0 1 1.034-.238l7.486 4.678a.25.25 0 0 0 .259.004l7.977-4.693a.75.75 0 1 1 .76 1.293l-7.977 4.693a1.75 1.75 0 0 1-1.814-.025L3.659 17.22a.75.75 0 0 1-.239-1.034"
27
+ clipRule="evenodd"
28
+ />
29
+ </Svg>
30
+ );
31
+ export default SvgLayers;
@@ -0,0 +1,36 @@
1
+ import * as React from "react";
2
+ import Svg, { Rect, Circle, Path } from "react-native-svg";
3
+ const SvgShapes = (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
+ <Rect width={7} height={7} x={4} y={13} rx={1} />
12
+ <Rect
13
+ width={7}
14
+ height={7}
15
+ x={4}
16
+ y={13}
17
+ stroke={props.color}
18
+ strokeWidth={3}
19
+ mask="url(#Shapes_svg__path-1-inside-1_417_447)"
20
+ rx={1}
21
+ />
22
+ <Circle
23
+ cx={16.5}
24
+ cy={16.5}
25
+ r={2.75}
26
+ stroke={props.color}
27
+ strokeWidth={1.5}
28
+ />
29
+ <Path
30
+ stroke={props.color}
31
+ strokeWidth={1.5}
32
+ d="M11.55 4.994c.194-.325.706-.325.9 0l.605-.362-.604.362 2.734 4.565c.162.27-.011.691-.45.691h-5.47c-.439 0-.612-.42-.45-.69z"
33
+ />
34
+ </Svg>
35
+ );
36
+ export default SvgShapes;
@@ -112,6 +112,7 @@ export { default as InsertRow } from "./InsertRow";
112
112
  export { default as Invoice } from "./Invoice";
113
113
  export { default as IpAddress } from "./IpAddress";
114
114
  export { default as Keyboard } from "./Keyboard";
115
+ export { default as Layers } from "./Layers";
115
116
  export { default as Left } from "./Left";
116
117
  export { default as LeftAlign } from "./LeftAlign";
117
118
  export { default as LeftArrow } from "./LeftArrow";
@@ -178,6 +179,7 @@ export { default as SendPlane } from "./SendPlane";
178
179
  export { default as Seo } from "./Seo";
179
180
  export { default as Settings } from "./Settings";
180
181
  export { default as SettingsChecked } from "./SettingsChecked";
182
+ export { default as Shapes } from "./Shapes";
181
183
  export { default as Share } from "./Share";
182
184
  export { default as SidebarClose } from "./SidebarClose";
183
185
  export { default as SidebarOpen } from "./SidebarOpen";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.7",
3
+ "version": "1.20.8",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",