@bigbinary/neeto-icons-rn 1.20.3 → 1.20.5
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/Sparkle.js +20 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgSparkle = (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="M3 16.792a4 4 0 0 1 4 4 4 4 0 0 1 4-4 4 4 0 0 1-4-4 4 4 0 0 1-4 4m10-3a4 4 0 0 1 4 4 4 4 0 0 1 4-4 4 4 0 0 1-4-4 4 4 0 0 1-4 4m-6-7a4 4 0 0 1 4 4 4 4 0 0 1 4-4 4 4 0 0 1-4-4 4 4 0 0 1-4 4"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgSparkle;
|
package/dist/icons/index.js
CHANGED
|
@@ -182,6 +182,7 @@ export { default as Share } from "./Share";
|
|
|
182
182
|
export { default as SidebarClose } from "./SidebarClose";
|
|
183
183
|
export { default as SidebarOpen } from "./SidebarOpen";
|
|
184
184
|
export { default as Smiley } from "./Smiley";
|
|
185
|
+
export { default as Sparkle } from "./Sparkle";
|
|
185
186
|
export { default as SpecificWindow } from "./SpecificWindow";
|
|
186
187
|
export { default as Status } from "./Status";
|
|
187
188
|
export { default as Subdomain } from "./Subdomain";
|