@bigbinary/neeto-icons-rn 1.20.52 → 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.
- package/dist/icons/Warning2.js +21 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -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;
|
package/dist/icons/index.js
CHANGED
|
@@ -383,6 +383,7 @@ export { default as VolumeOutline } from "./VolumeOutline";
|
|
|
383
383
|
export { default as VolumeOutline0 } from "./VolumeOutline0";
|
|
384
384
|
export { default as WarningFilled } from "./WarningFilled";
|
|
385
385
|
export { default as Warning } from "./Warning";
|
|
386
|
+
export { default as Warning2 } from "./Warning2";
|
|
386
387
|
export { default as Web } from "./Web";
|
|
387
388
|
export { default as Whatsapp } from "./Whatsapp";
|
|
388
389
|
export { default as WidgetModes } from "./WidgetModes";
|