@bigbinary/neeto-icons-rn 1.20.51 → 1.20.53

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,63 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
3
+ const SvgCardPayment = (props) => (
4
+ <Svg
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ viewBox="0 0 24 24"
8
+ width={props.size}
9
+ height={props.size}
10
+ {...props}
11
+ >
12
+ <G clipPath="url(#clip0_636_52)">
13
+ <Path
14
+ d="M12 18.998H6C5.20435 18.998 4.44129 18.682 3.87868 18.1194C3.31607 17.5568 3 16.7937 3 15.998V7.99805C3 7.2024 3.31607 6.43934 3.87868 5.87673C4.44129 5.31412 5.20435 4.99805 6 4.99805H18C18.7956 4.99805 19.5587 5.31412 20.1213 5.87673C20.6839 6.43934 21 7.2024 21 7.99805V12.498"
15
+ stroke="#344054"
16
+ strokeWidth={1.2}
17
+ strokeLinecap="round"
18
+ strokeLinejoin="round"
19
+ />
20
+ <Path
21
+ d="M3 10.002H21"
22
+ stroke="#344054"
23
+ strokeWidth={1.2}
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ <Path
28
+ d="M16 19.002H22"
29
+ stroke="#344054"
30
+ strokeWidth={1.2}
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ <Path
35
+ d="M19.0001 16.002L22.0001 19.002L19.0001 22.002"
36
+ stroke="#344054"
37
+ strokeWidth={1.2}
38
+ strokeLinecap="round"
39
+ strokeLinejoin="round"
40
+ />
41
+ <Path
42
+ d="M7.00488 15H7.01013"
43
+ stroke="#344054"
44
+ strokeWidth={1.2}
45
+ strokeLinecap="round"
46
+ strokeLinejoin="round"
47
+ />
48
+ <Path
49
+ d="M11.0001 15H13.0001"
50
+ stroke="#344054"
51
+ strokeWidth={1.2}
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ </G>
56
+ <Defs>
57
+ <ClipPath id="clip0_636_52">
58
+ <Rect width={24} height={24} fill="white" />
59
+ </ClipPath>
60
+ </Defs>
61
+ </Svg>
62
+ );
63
+ export default SvgCardPayment;
@@ -0,0 +1,21 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgWarning2 = (props) => (
4
+ <Svg
5
+ fill="none"
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ viewBox="0 0 33 33"
8
+ width={props.size}
9
+ height={props.size}
10
+ {...props}
11
+ >
12
+ <Path
13
+ d="M16.3359 10.8895V16.334M16.3359 21.7784H16.3495M11.8443 4.08398H20.8276C21.2359 4.08398 21.5082 4.2201 21.7804 4.49232L28.1776 10.8895C28.4498 11.1618 28.5859 11.434 28.5859 11.8423V20.8257C28.5859 21.234 28.4498 21.5062 28.1776 21.7784L21.7804 28.1757C21.5082 28.4479 21.2359 28.584 20.8276 28.584H11.8443C11.4359 28.584 11.1637 28.4479 10.8915 28.1757L4.49427 21.7784C4.22205 21.5062 4.08594 21.234 4.08594 20.8257V11.8423C4.08594 11.434 4.22205 11.1618 4.49427 10.8895L10.8915 4.49232C11.1637 4.2201 11.4359 4.08398 11.8443 4.08398Z"
14
+ stroke={props.color}
15
+ strokeWidth={2.04167}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ </Svg>
20
+ );
21
+ export default SvgWarning2;
@@ -40,6 +40,7 @@ export { default as CalendarHoliday } from "./CalendarHoliday";
40
40
  export { default as Camera } from "./Camera";
41
41
  export { default as CannedResponses } from "./CannedResponses";
42
42
  export { default as Captcha } from "./Captcha";
43
+ export { default as CardPayment } from "./CardPayment";
43
44
  export { default as CategoriesSettings } from "./CategoriesSettings";
44
45
  export { default as Category } from "./Category";
45
46
  export { default as CenterAlign } from "./CenterAlign";
@@ -382,6 +383,7 @@ export { default as VolumeOutline } from "./VolumeOutline";
382
383
  export { default as VolumeOutline0 } from "./VolumeOutline0";
383
384
  export { default as WarningFilled } from "./WarningFilled";
384
385
  export { default as Warning } from "./Warning";
386
+ export { default as Warning2 } from "./Warning2";
385
387
  export { default as Web } from "./Web";
386
388
  export { default as Whatsapp } from "./Whatsapp";
387
389
  export { default as WidgetModes } from "./WidgetModes";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.51",
3
+ "version": "1.20.53",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",