@bigbinary/neeto-icons-rn 1.20.48 → 1.20.49
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/misc/Danger.js +15 -0
- package/dist/misc/Info.js +24 -0
- package/dist/misc/Megaphone.js +23 -0
- package/dist/misc/Success.js +19 -0
- package/dist/misc/Warning.js +27 -0
- package/dist/misc/index.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Circle, Path } from "react-native-svg";
|
|
3
|
+
const SvgDanger = (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
|
+
<Circle cx={24} cy={24} r={20} fill="#FF5743" />
|
|
12
|
+
<Path fill={props.color} d="M14 21h20v6H14z" />
|
|
13
|
+
</Svg>
|
|
14
|
+
);
|
|
15
|
+
export default SvgDanger;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Circle, Path, Rect } from "react-native-svg";
|
|
3
|
+
const SvgInfo = (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
|
+
<Circle cx={24} cy={24} r={20} fill="#4892E7" />
|
|
12
|
+
<Path fill={props.color} d="M22 34V20h4v14z" />
|
|
13
|
+
<Rect
|
|
14
|
+
width={4}
|
|
15
|
+
height={4}
|
|
16
|
+
x={22}
|
|
17
|
+
y={18}
|
|
18
|
+
fill={props.color}
|
|
19
|
+
rx={2}
|
|
20
|
+
transform="rotate(-90 22 18)"
|
|
21
|
+
/>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
export default SvgInfo;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgMegaphone = (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
|
+
fill="#B3BFC4"
|
|
13
|
+
d="M11.5 34.906v-3.313a2.23 2.23 0 0 1 2.707-2.176l7.343 1.61a3.57 3.57 0 0 1 2.807 3.489v1.643a3.572 3.572 0 0 1-4.336 3.49l-5.714-1.254a3.57 3.57 0 0 1-2.807-3.489m1.429 0c0 1.007.7 1.877 1.683 2.093l5.715 1.254a2.144 2.144 0 0 0 2.602-2.094v-1.643c0-1.007-.701-1.877-1.684-2.093L13.9 30.812a.8.8 0 0 0-.971.781z"
|
|
14
|
+
/>
|
|
15
|
+
<Path fill="#E05241" d="m6.857 30.187 34.286 8.096V9.71L6.857 19.235z" />
|
|
16
|
+
<Path
|
|
17
|
+
fill="#B3BFC4"
|
|
18
|
+
d="M4 31.14V18.282h2.857V31.14zM41.143 8.282H44v31.429h-2.857z"
|
|
19
|
+
/>
|
|
20
|
+
<Path fill="#EF5C4A" d="M39.714 12.568 8.286 21.14v1.428l31.428-5.714z" />
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
export default SvgMegaphone;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Circle, Path } from "react-native-svg";
|
|
3
|
+
const SvgSuccess = (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
|
+
<Circle cx={24} cy={24} r={20} fill="#49B67E" />
|
|
12
|
+
<Path
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeWidth={4}
|
|
15
|
+
d="m14 24.822 6.429 5.714L34 16.964"
|
|
16
|
+
/>
|
|
17
|
+
</Svg>
|
|
18
|
+
);
|
|
19
|
+
export default SvgSuccess;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, Rect } from "react-native-svg";
|
|
3
|
+
const SvgWarning = (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
|
+
fill="#FFD55C"
|
|
13
|
+
d="M22.222 7.043a2.036 2.036 0 0 1 3.556 0l17.953 31.88C44.504 40.296 43.52 42 41.953 42H6.047c-1.567 0-2.551-1.704-1.778-3.077z"
|
|
14
|
+
/>
|
|
15
|
+
<Path fill="#000" d="M25.9 18v13.3h-3.8V18z" />
|
|
16
|
+
<Rect
|
|
17
|
+
width={3.8}
|
|
18
|
+
height={3.8}
|
|
19
|
+
x={25.9}
|
|
20
|
+
y={33.2}
|
|
21
|
+
fill="#000"
|
|
22
|
+
rx={1.9}
|
|
23
|
+
transform="rotate(90 25.9 33.2)"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgWarning;
|
package/dist/misc/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export { default as Callerdesk } from "./Callerdesk";
|
|
|
4
4
|
export { default as CashPayment } from "./CashPayment";
|
|
5
5
|
export { default as Chrome } from "./Chrome";
|
|
6
6
|
export { default as Daily } from "./Daily";
|
|
7
|
+
export { default as Danger } from "./Danger";
|
|
7
8
|
export { default as Discover } from "./Discover";
|
|
8
9
|
export { default as Edge } from "./Edge";
|
|
9
10
|
export { default as FacebookPixel } from "./FacebookPixel";
|
|
@@ -15,12 +16,14 @@ export { default as GoogleAnalytics } from "./GoogleAnalytics";
|
|
|
15
16
|
export { default as GoogleCalendar } from "./GoogleCalendar";
|
|
16
17
|
export { default as GoogleMeet } from "./GoogleMeet";
|
|
17
18
|
export { default as GoogleSheets } from "./GoogleSheets";
|
|
19
|
+
export { default as Info } from "./Info";
|
|
18
20
|
export { default as Instagram } from "./Instagram";
|
|
19
21
|
export { default as Jcb } from "./Jcb";
|
|
20
22
|
export { default as Jitsi } from "./Jitsi";
|
|
21
23
|
export { default as Linear } from "./Linear";
|
|
22
24
|
export { default as MailChimp } from "./MailChimp";
|
|
23
25
|
export { default as Mastercard } from "./Mastercard";
|
|
26
|
+
export { default as Megaphone } from "./Megaphone";
|
|
24
27
|
export { default as Microsoft } from "./Microsoft";
|
|
25
28
|
export { default as Outlook } from "./Outlook";
|
|
26
29
|
export { default as PaypalTypeface } from "./PaypalTypeface";
|
|
@@ -31,6 +34,7 @@ export { default as Shopify } from "./Shopify";
|
|
|
31
34
|
export { default as Slack } from "./Slack";
|
|
32
35
|
export { default as Stripe } from "./Stripe";
|
|
33
36
|
export { default as StripeTypeface } from "./StripeTypeface";
|
|
37
|
+
export { default as Success } from "./Success";
|
|
34
38
|
export { default as Teams } from "./Teams";
|
|
35
39
|
export { default as Trello } from "./Trello";
|
|
36
40
|
export { default as Twilio } from "./Twilio";
|
|
@@ -39,6 +43,7 @@ export { default as UnionPay } from "./UnionPay";
|
|
|
39
43
|
export { default as Upi } from "./Upi";
|
|
40
44
|
export { default as UpiTypeface } from "./UpiTypeface";
|
|
41
45
|
export { default as Visa } from "./Visa";
|
|
46
|
+
export { default as Warning } from "./Warning";
|
|
42
47
|
export { default as Webhook } from "./Webhook";
|
|
43
48
|
export { default as Whatsapp } from "./Whatsapp";
|
|
44
49
|
export { default as Whereby } from "./Whereby";
|