@bigbinary/neeto-icons-rn 1.20.1 → 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";
@@ -0,0 +1,20 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgWebhook = (props) => (
4
+ <Svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={props.size}
7
+ height={props.size}
8
+ fill="none"
9
+ viewBox="0 0 32 30"
10
+ {...props}
11
+ >
12
+ <Path
13
+ fill="#7547DB"
14
+ fillRule="evenodd"
15
+ d="M16.232 10.504a2.998 2.998 0 0 1-3.19-2.99 3 3 0 0 1 2.996-2.997A2.998 2.998 0 0 1 18.365 9.4l3.313 6.09a7.455 7.455 0 1 1 2.546 14.462 7.5 7.5 0 0 1-4.098-1.224 1.07 1.07 0 0 1-.199-1.623q.003-.005.01-.006a1.12 1.12 0 0 1 1.423-.18 5.27 5.27 0 1 0 2.864-9.692c-1.007 0-2.436.44-3.296.986a.386.386 0 0 1-.57-.124zm-1.376 12.954a7.459 7.459 0 0 1-11.07 5.159 7.46 7.46 0 0 1 .38-13.122 1.066 1.066 0 0 1 1.506.64q.002.004 0 .01a1.12 1.12 0 0 1-.556 1.323 5.27 5.27 0 1 0 6.962 7.327c.504-.872.837-2.33.794-3.347a.385.385 0 0 1 .392-.432l8.633.22a2.998 2.998 0 0 1 4.185-1.268 3 3 0 0 1 1.097 4.093 2.998 2.998 0 0 1-5.393-.427zm-3.619-10.227a7.456 7.456 0 1 1 11.251-9.437 7.5 7.5 0 0 1 .99 4.16 1.067 1.067 0 0 1-1.316.98 1.12 1.12 0 0 1-.867-1.143 5.268 5.268 0 0 0-7.898-4.834 5.273 5.273 0 0 0-1.929 7.2c.504.871 1.6 1.89 2.502 2.36a.384.384 0 0 1 .178.556L9.642 20.44q.053.08.102.164a2.998 2.998 0 0 1-5.19 2.997 2.998 2.998 0 0 1 3.066-4.457z"
16
+ clipRule="evenodd"
17
+ />
18
+ </Svg>
19
+ );
20
+ export default SvgWebhook;
@@ -18,6 +18,7 @@ export { default as Stripe } from "./Stripe";
18
18
  export { default as Teams } from "./Teams";
19
19
  export { default as Twilio } from "./Twilio";
20
20
  export { default as Ubuntu } from "./Ubuntu";
21
+ export { default as Webhook } from "./Webhook";
21
22
  export { default as Whatsapp } from "./Whatsapp";
22
23
  export { default as Windows } from "./Windows";
23
24
  export { default as Wordpress } from "./Wordpress";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.1",
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;