@bigbinary/neeto-icons-rn 1.20.7 → 1.20.9
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/Bulb.js +20 -0
- package/dist/icons/Layers.js +31 -0
- package/dist/icons/Shapes.js +36 -0
- package/dist/icons/index.js +3 -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 SvgBulb = (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 12h1m8-9v1m8 8h1M5.6 5.6l.7.7m12.1-.7-.7.7M9 16a5 5 0 1 1 6 0 3.5 3.5 0 0 0-1 3 2 2 0 0 1-4 0 3.5 3.5 0 0 0-1-3M9.7 17h4.6"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgBulb;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgLayers = (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={props.color}
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
d="m4.972 7.834 7.084 4.25 7.085-4.25-7.085-4.25zm-1.487-.858a1 1 0 0 0 0 1.715l8.057 4.834a1 1 0 0 0 1.029 0l8.056-4.834a1 1 0 0 0 0-1.715l-8.056-4.833a1 1 0 0 0-1.03 0z"
|
|
15
|
+
clipRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill={props.color}
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
d="M3.42 11.936a.75.75 0 0 1 1.034-.238l7.486 4.678a.25.25 0 0 0 .259.004l7.977-4.693a.75.75 0 1 1 .76 1.293l-7.977 4.693a1.75 1.75 0 0 1-1.814-.025L3.659 12.97a.75.75 0 0 1-.239-1.034"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
fill={props.color}
|
|
25
|
+
fillRule="evenodd"
|
|
26
|
+
d="M3.42 16.186a.75.75 0 0 1 1.034-.238l7.486 4.678a.25.25 0 0 0 .259.004l7.977-4.693a.75.75 0 1 1 .76 1.293l-7.977 4.693a1.75 1.75 0 0 1-1.814-.025L3.659 17.22a.75.75 0 0 1-.239-1.034"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
export default SvgLayers;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Circle, Path } from "react-native-svg";
|
|
3
|
+
const SvgShapes = (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
|
+
<Rect width={7} height={7} x={4} y={13} rx={1} />
|
|
12
|
+
<Rect
|
|
13
|
+
width={7}
|
|
14
|
+
height={7}
|
|
15
|
+
x={4}
|
|
16
|
+
y={13}
|
|
17
|
+
stroke={props.color}
|
|
18
|
+
strokeWidth={3}
|
|
19
|
+
mask="url(#Shapes_svg__path-1-inside-1_417_447)"
|
|
20
|
+
rx={1}
|
|
21
|
+
/>
|
|
22
|
+
<Circle
|
|
23
|
+
cx={16.5}
|
|
24
|
+
cy={16.5}
|
|
25
|
+
r={2.75}
|
|
26
|
+
stroke={props.color}
|
|
27
|
+
strokeWidth={1.5}
|
|
28
|
+
/>
|
|
29
|
+
<Path
|
|
30
|
+
stroke={props.color}
|
|
31
|
+
strokeWidth={1.5}
|
|
32
|
+
d="M11.55 4.994c.194-.325.706-.325.9 0l.605-.362-.604.362 2.734 4.565c.162.27-.011.691-.45.691h-5.47c-.439 0-.612-.42-.45-.69z"
|
|
33
|
+
/>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
export default SvgShapes;
|
package/dist/icons/index.js
CHANGED
|
@@ -12,6 +12,7 @@ export { default as Bank } from "./Bank";
|
|
|
12
12
|
export { default as Book } from "./Book";
|
|
13
13
|
export { default as BookOpen } from "./BookOpen";
|
|
14
14
|
export { default as Braces } from "./Braces";
|
|
15
|
+
export { default as Bulb } from "./Bulb";
|
|
15
16
|
export { default as Css3 } from "./Css3";
|
|
16
17
|
export { default as Calendar } from "./Calendar";
|
|
17
18
|
export { default as Camera } from "./Camera";
|
|
@@ -112,6 +113,7 @@ export { default as InsertRow } from "./InsertRow";
|
|
|
112
113
|
export { default as Invoice } from "./Invoice";
|
|
113
114
|
export { default as IpAddress } from "./IpAddress";
|
|
114
115
|
export { default as Keyboard } from "./Keyboard";
|
|
116
|
+
export { default as Layers } from "./Layers";
|
|
115
117
|
export { default as Left } from "./Left";
|
|
116
118
|
export { default as LeftAlign } from "./LeftAlign";
|
|
117
119
|
export { default as LeftArrow } from "./LeftArrow";
|
|
@@ -178,6 +180,7 @@ export { default as SendPlane } from "./SendPlane";
|
|
|
178
180
|
export { default as Seo } from "./Seo";
|
|
179
181
|
export { default as Settings } from "./Settings";
|
|
180
182
|
export { default as SettingsChecked } from "./SettingsChecked";
|
|
183
|
+
export { default as Shapes } from "./Shapes";
|
|
181
184
|
export { default as Share } from "./Share";
|
|
182
185
|
export { default as SidebarClose } from "./SidebarClose";
|
|
183
186
|
export { default as SidebarOpen } from "./SidebarOpen";
|