@bigbinary/neeto-icons-rn 1.20.43 → 1.20.44
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/ShapeSwitcher.js +29 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Rect, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgShapeSwitcher = (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
|
+
<G
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeWidth={1.5}
|
|
14
|
+
clipPath="url(#ShapeSwitcher_svg__a)"
|
|
15
|
+
>
|
|
16
|
+
<Rect width={12.632} height={12.632} x={9.368} y={9.368} rx={3.158} />
|
|
17
|
+
<Path
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
d="M14.544 7.263A6.318 6.318 0 0 0 2 8.316a6.32 6.32 0 0 0 5.19 6.216"
|
|
20
|
+
/>
|
|
21
|
+
</G>
|
|
22
|
+
<Defs>
|
|
23
|
+
<ClipPath id="ShapeSwitcher_svg__a">
|
|
24
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
25
|
+
</ClipPath>
|
|
26
|
+
</Defs>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgShapeSwitcher;
|
package/dist/icons/index.js
CHANGED
|
@@ -264,6 +264,7 @@ export { default as Seo } from "./Seo";
|
|
|
264
264
|
export { default as Settings } from "./Settings";
|
|
265
265
|
export { default as SettingsChecked } from "./SettingsChecked";
|
|
266
266
|
export { default as Setup } from "./Setup";
|
|
267
|
+
export { default as ShapeSwitcher } from "./ShapeSwitcher";
|
|
267
268
|
export { default as Shapes } from "./Shapes";
|
|
268
269
|
export { default as Share } from "./Share";
|
|
269
270
|
export { default as SidebarClose } from "./SidebarClose";
|