@bigbinary/neeto-icons-rn 1.20.6 → 1.20.7
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/Split.js +27 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgSplit = (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="M8 4H5c-.53 0-1.04.24-1.414.67A2.46 2.46 0 0 0 3 6.285v11.428c0 .607.21 1.188.586 1.617C3.96 19.759 4.47 20 5 20h3m8-16h3c.53 0 1.04.24 1.414.67.375.428.586 1.01.586 1.616v11.428c0 .607-.21 1.188-.586 1.617-.375.428-.884.669-1.414.669h-3"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeDasharray="3 3"
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M12 2v20"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgSplit;
|
package/dist/icons/index.js
CHANGED
|
@@ -184,6 +184,7 @@ export { default as SidebarOpen } from "./SidebarOpen";
|
|
|
184
184
|
export { default as Smiley } from "./Smiley";
|
|
185
185
|
export { default as Sparkle } from "./Sparkle";
|
|
186
186
|
export { default as SpecificWindow } from "./SpecificWindow";
|
|
187
|
+
export { default as Split } from "./Split";
|
|
187
188
|
export { default as Status } from "./Status";
|
|
188
189
|
export { default as Subdomain } from "./Subdomain";
|
|
189
190
|
export { default as Suitcase } from "./Suitcase";
|