@bigbinary/neeto-icons-rn 1.18.8 → 1.18.9

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,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgDrag = (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
+ fill={props.color}
13
+ stroke={props.color}
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ strokeWidth={1.5}
17
+ clipPath="url(#Drag_svg__a)"
18
+ >
19
+ <Path d="M8 12a1 1 0 1 0 2 0 1 1 0 0 0-2 0M8 18a1 1 0 1 0 2 0 1 1 0 0 0-2 0M8 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0M14 12a1 1 0 1 0 2 0 1 1 0 0 0-2 0M14 18a1 1 0 1 0 2 0 1 1 0 0 0-2 0M14 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="Drag_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgDrag;
@@ -55,6 +55,7 @@ export { default as Down } from "./Down";
55
55
  export { default as DownArrow } from "./DownArrow";
56
56
  export { default as Download } from "./Download";
57
57
  export { default as Draft } from "./Draft";
58
+ export { default as Drag } from "./Drag";
58
59
  export { default as Dropdown } from "./Dropdown";
59
60
  export { default as DropdownClosed } from "./DropdownClosed";
60
61
  export { default as Edit } from "./Edit";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.18.8",
3
+ "version": "1.18.9",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",