@bigbinary/neeto-icons-rn 1.20.20 → 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.
@@ -0,0 +1,29 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgColorPicker = (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 clipPath="url(#ColorPicker_svg__a)">
12
+ <Path
13
+ stroke={props.color}
14
+ strokeWidth={1.5}
15
+ d="M14.653 6.175 17 3.828a2 2 0 1 1 2.828 2.828l-2.347 2.348m-5.085-.572-8.95 8.951a2.96 2.96 0 0 0-.865 2l-.009.276-.003.023c-.193.843.562 1.599 1.406 1.405l.023-.003.277-.008a2.96 2.96 0 0 0 1.999-.865l8.95-8.95"
16
+ />
17
+ <Path
18
+ fill={props.color}
19
+ d="M14.62 8.165a.75.75 0 0 0 1.06-1.06zm2.91.79-.53-.53-1.06 1.06.53.53zm-1.767 2.475-3.536-3.536-1.06 1.061 3.535 3.536zm-2.475-4.596 1.331 1.331 1.06-1.06-1.33-1.332zm3.182 3.182.353.353 1.06-1.06-.353-.354zm-4.243-2.122a.75.75 0 0 1 0-1.06l-1.06-1.061a2.25 2.25 0 0 0 0 3.182zm4.596 3.536a.75.75 0 0 1-1.06 0l-1.061 1.06a2.25 2.25 0 0 0 3.182 0zm1.06 1.06a2.25 2.25 0 0 0 0-3.181l-1.06 1.06a.75.75 0 0 1 0 1.06zm-5.656-5.656a.75.75 0 0 1 1.06 0l1.061-1.061a2.25 2.25 0 0 0-3.182 0z"
20
+ />
21
+ </G>
22
+ <Defs>
23
+ <ClipPath id="ColorPicker_svg__a">
24
+ <Path fill={props.color} d="M0 0h24v24H0z" />
25
+ </ClipPath>
26
+ </Defs>
27
+ </Svg>
28
+ );
29
+ export default SvgColorPicker;
@@ -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;
@@ -43,6 +43,7 @@ export { default as CloseCircle } from "./CloseCircle";
43
43
  export { default as ClosedPullRequest } from "./ClosedPullRequest";
44
44
  export { default as CodeBlock } from "./CodeBlock";
45
45
  export { default as Collapse } from "./Collapse";
46
+ export { default as ColorPicker } from "./ColorPicker";
46
47
  export { default as Column } from "./Column";
47
48
  export { default as Computer } from "./Computer";
48
49
  export { default as Concat } from "./Concat";
@@ -150,6 +151,7 @@ export { default as MessageBubble } from "./MessageBubble";
150
151
  export { default as MessageSquare } from "./MessageSquare";
151
152
  export { default as Mic } from "./Mic";
152
153
  export { default as MicOff } from "./MicOff";
154
+ export { default as Minimize } from "./Minimize";
153
155
  export { default as Minus } from "./Minus";
154
156
  export { default as Mobile } from "./Mobile";
155
157
  export { default as Moon } from "./Moon";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.20",
3
+ "version": "1.20.22",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",