@bigbinary/neeto-icons-rn 1.20.21 → 1.20.22
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.
- package/dist/icons/Minimize.js +27 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMinimize = (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(#Minimize_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M5 9h4V5M3 3l6 6M5 15h4v4M3 21l6-6M19 9h-4V5M15 9l6-6M19 15h-4v4M15 15l6 6" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Minimize_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgMinimize;
|
package/dist/icons/index.js
CHANGED
|
@@ -151,6 +151,7 @@ export { default as MessageBubble } from "./MessageBubble";
|
|
|
151
151
|
export { default as MessageSquare } from "./MessageSquare";
|
|
152
152
|
export { default as Mic } from "./Mic";
|
|
153
153
|
export { default as MicOff } from "./MicOff";
|
|
154
|
+
export { default as Minimize } from "./Minimize";
|
|
154
155
|
export { default as Minus } from "./Minus";
|
|
155
156
|
export { default as Mobile } from "./Mobile";
|
|
156
157
|
export { default as Moon } from "./Moon";
|