@bigbinary/neeto-icons-rn 1.19.2 → 1.20.1

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.
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ import Svg, { Rect, G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgNeetoTower = (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={800} height={800} fill="#000" rx={160} />
12
+ <G clipPath="url(#NeetoTower_svg__a)">
13
+ <Path fill="#0DA84C" d="M557.734 225H421.212v206.122z" />
14
+ <Path fill="#5BCC5A" d="M241.859 225h179.353v93.692H241.859z" />
15
+ <Path fill="#75DC66" d="M327.52 573V225.002l93.692-.002v206.122z" />
16
+ </G>
17
+ <Defs>
18
+ <ClipPath id="NeetoTower_svg__a">
19
+ <Path fill={props.color} d="M225.352 225.35h348.3v348.3h-348.3z" />
20
+ </ClipPath>
21
+ </Defs>
22
+ </Svg>
23
+ );
24
+ export default SvgNeetoTower;
@@ -22,5 +22,6 @@ export { default as NeetoReplay } from "./NeetoReplay";
22
22
  export { default as NeetoRunner } from "./NeetoRunner";
23
23
  export { default as NeetoSite } from "./NeetoSite";
24
24
  export { default as NeetoTestify } from "./NeetoTestify";
25
+ export { default as NeetoTower } from "./NeetoTower";
25
26
  export { default as NeetoWireframe } from "./NeetoWireframe";
26
27
  export { default as NeetoSeo } from "./NeetoSeo";
@@ -0,0 +1,20 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgCustomSize = (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="M7 19a2 2 0 0 1-2-2M5 13v-2M5 7a2 2 0 0 1 2-2M11 5h2M17 5a2 2 0 0 1 2 2M19 11v2M19 17v4M21 19h-4M13 19h-2"
17
+ />
18
+ </Svg>
19
+ );
20
+ export default SvgCustomSize;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgEntireScreen = (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 6.286c0-.606.21-1.188.586-1.617C3.96 4.241 4.47 4 5 4h14c.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.669H5c-.53 0-1.04-.24-1.414-.67A2.46 2.46 0 0 1 3 17.715z"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="M14 7h3.8c.11 0 .2.09.2.2V11M10 17H6.2a.2.2 0 0 1-.2-.2V13"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgEntireScreen;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgMicOff = (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="M9.135 5c.143-.437.396-.838.744-1.168A3.1 3.1 0 0 1 11.999 3c.797 0 1.56.3 2.122.832.563.533.879 1.256.879 2.01v4.737c0 .754-.316 1.477-.879 2.01A3.1 3.1 0 0 1 12 13.42c-.796 0-1.559-.3-2.121-.832A2.77 2.77 0 0 1 9 10.579V8.5M5 10.579c0 1.759.737 3.445 2.05 4.69 1.313 1.243 3.093 1.941 4.95 1.941a7.3 7.3 0 0 0 3.38-.824M19 10.58c0 1.635-.638 3.208-1.782 4.421M8 21h8M12 17.21V21"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="m5 3 14 18"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgMicOff;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgSpecificWindow = (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 7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zM8.01 7.5h.01M10 7.5h.01M6 7.5h.01"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="M3.5 10H21"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgSpecificWindow;
@@ -0,0 +1,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgVideoOff = (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="m15 10 4.553-2.276A1 1 0 0 1 21 8.618v6.764a1 1 0 0 1-1.447.894L15 14zM10 6h3a2 2 0 0 1 2 2v6M6 6H5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="M4 3.5 21 20"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgVideoOff;
@@ -44,6 +44,7 @@ export { default as Copy } from "./Copy";
44
44
  export { default as CreditCard } from "./CreditCard";
45
45
  export { default as Cursor } from "./Cursor";
46
46
  export { default as CustomDomain } from "./CustomDomain";
47
+ export { default as CustomSize } from "./CustomSize";
47
48
  export { default as Customers } from "./Customers";
48
49
  export { default as Customize } from "./Customize";
49
50
  export { default as Dashboard } from "./Dashboard";
@@ -65,6 +66,7 @@ export { default as DropdownClosed } from "./DropdownClosed";
65
66
  export { default as Edit } from "./Edit";
66
67
  export { default as Email } from "./Email";
67
68
  export { default as EmailSent } from "./EmailSent";
69
+ export { default as EntireScreen } from "./EntireScreen";
68
70
  export { default as Error } from "./Error";
69
71
  export { default as Expand } from "./Expand";
70
72
  export { default as ExternalLink } from "./ExternalLink";
@@ -135,6 +137,7 @@ export { default as Message } from "./Message";
135
137
  export { default as MessageBubble } from "./MessageBubble";
136
138
  export { default as MessageSquare } from "./MessageSquare";
137
139
  export { default as Mic } from "./Mic";
140
+ export { default as MicOff } from "./MicOff";
138
141
  export { default as Minus } from "./Minus";
139
142
  export { default as Mobile } from "./Mobile";
140
143
  export { default as Moon } from "./Moon";
@@ -180,6 +183,7 @@ export { default as Share } from "./Share";
180
183
  export { default as SidebarClose } from "./SidebarClose";
181
184
  export { default as SidebarOpen } from "./SidebarOpen";
182
185
  export { default as Smiley } from "./Smiley";
186
+ export { default as SpecificWindow } from "./SpecificWindow";
183
187
  export { default as Status } from "./Status";
184
188
  export { default as Subdomain } from "./Subdomain";
185
189
  export { default as Suitcase } from "./Suitcase";
@@ -212,6 +216,7 @@ export { default as UserRoundedRect } from "./UserRoundedRect";
212
216
  export { default as UserSettings } from "./UserSettings";
213
217
  export { default as UserStar } from "./UserStar";
214
218
  export { default as Video } from "./Video";
219
+ export { default as VideoOff } from "./VideoOff";
215
220
  export { default as Volume } from "./Volume";
216
221
  export { default as Volume0 } from "./Volume0";
217
222
  export { default as Volume100 } from "./Volume100";
@@ -0,0 +1,16 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgNeetoTower = (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 fill="#0DA84C" d="M389.441 11.232H231.526v238.421z" />
12
+ <Path fill="#5BCC5A" d="M24.07 11.232h207.456v108.373H24.069z" />
13
+ <Path fill="#75DC66" d="M123.153 413.762V11.235l108.373-.003v238.421z" />
14
+ </Svg>
15
+ );
16
+ export default SvgNeetoTower;
@@ -23,4 +23,5 @@ export { default as NeetoRunner } from "./NeetoRunner";
23
23
  export { default as NeetoSeo } from "./NeetoSeo";
24
24
  export { default as NeetoSite } from "./NeetoSite";
25
25
  export { default as NeetoTestify } from "./NeetoTestify";
26
+ export { default as NeetoTower } from "./NeetoTower";
26
27
  export { default as NeetoWireframe } from "./NeetoWireframe";
@@ -0,0 +1,20 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgNeetoTower = (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 fill="#0DA84C" d="M129.695 8.441H79.823V83.74z" />
12
+ <Path fill="#5BCC5A" d="M14.305 8.441h65.518v34.226H14.305z" />
13
+ <Path fill="#75DC66" d="M45.597 135.567V8.442h34.226v75.297z" />
14
+ <Path
15
+ fill="#000"
16
+ d="M227.543 54.95v13.03h-21.449v67.457h-16.143V67.979h-21.448V54.95zM265.382 136.475q-9.225 0-16.605-4.036-7.38-4.15-11.646-11.646-4.152-7.496-4.152-17.297t4.267-17.297q4.381-7.495 11.877-11.531 7.495-4.152 16.72-4.152t16.721 4.152q7.495 4.035 11.762 11.53 4.381 7.496 4.381 17.298t-4.497 17.297q-4.382 7.495-11.992 11.646-7.495 4.036-16.836 4.036m0-14.068q4.382 0 8.187-2.076 3.921-2.19 6.227-6.457t2.306-10.378q0-9.11-4.843-13.953-4.728-4.959-11.646-4.959-6.92 0-11.647 4.959-4.612 4.844-4.612 13.953 0 9.11 4.497 14.068 4.613 4.843 11.531 4.843M396.803 71.554l-18.68 63.883H360.71l-11.646-44.626-11.647 44.626H319.89l-18.796-63.883h16.374l11.301 48.662 12.223-48.662h17.066l11.993 48.547 11.3-48.547zM462.618 102.112q0 3.46-.461 6.227h-46.702q.577 6.919 4.843 10.839 4.267 3.921 10.494 3.921 8.994 0 12.799-7.726h17.412q-2.767 9.225-10.608 15.221-7.842 5.881-19.257 5.881-9.225 0-16.605-4.036-7.266-4.15-11.416-11.646-4.036-7.496-4.036-17.297 0-9.917 4.036-17.412 4.035-7.496 11.3-11.532t16.721-4.036q9.109 0 16.259 3.921 7.264 3.92 11.185 11.185 4.036 7.15 4.036 16.49m-16.72-4.612q-.115-6.227-4.498-9.917-4.382-3.806-10.724-3.806-5.996 0-10.147 3.69-4.036 3.575-4.959 10.032zM488.239 81.471q3.113-5.073 8.072-7.957 5.073-2.882 11.531-2.882v16.95h-4.267q-7.61 0-11.531 3.575-3.805 3.575-3.805 12.454v31.826h-16.144V71.554h16.144zM229.747 25.385q0 1.295-.173 2.331h-17.471q.216 2.59 1.812 4.058t3.926 1.468q3.364 0 4.788-2.892h6.514q-1.036 3.453-3.969 5.698-2.934 2.202-7.204 2.202-3.451 0-6.212-1.511-2.717-1.555-4.27-4.36-1.51-2.807-1.51-6.476 0-3.713 1.51-6.52 1.509-2.806 4.227-4.316 2.718-1.511 6.255-1.511 3.408 0 6.082 1.467a10.12 10.12 0 0 1 4.185 4.188q1.51 2.677 1.51 6.174m-6.255-1.727q-.043-2.331-1.683-3.713-1.64-1.425-4.011-1.425-2.244 0-3.797 1.382-1.509 1.338-1.854 3.756zM256.37 25.385q0 1.295-.172 2.331h-17.471q.216 2.59 1.812 4.058t3.925 1.468q3.366 0 4.789-2.892h6.513q-1.035 3.453-3.968 5.698-2.934 2.202-7.204 2.202-3.451 0-6.212-1.511-2.717-1.555-4.271-4.36-1.509-2.807-1.509-6.476 0-3.713 1.509-6.52 1.51-2.806 4.228-4.316 2.718-1.511 6.255-1.511 3.408 0 6.082 1.467a10.12 10.12 0 0 1 4.185 4.188q1.509 2.677 1.509 6.174m-6.255-1.727q-.042-2.331-1.682-3.713-1.64-1.425-4.012-1.425-2.242 0-3.796 1.382-1.51 1.338-1.855 3.756zM267.91 18.862v11.675c0 .805.212 1.338.586 1.712q.604.518 1.985.518h2.804v5.094h-3.797c-5.09 0-7.525-2.603-7.525-7.553V18.862h-3.202v-5.035h3.202V7.874h5.947v5.951h5.375v5.036zM288.114 38.25q-3.45 0-6.211-1.511-2.761-1.555-4.357-4.36-1.553-2.807-1.553-6.476t1.596-6.476q1.64-2.806 4.443-4.317 2.804-1.554 6.255-1.554t6.255 1.554q2.804 1.51 4.4 4.317 1.64 2.806 1.639 6.476t-1.682 6.476a11.47 11.47 0 0 1-4.487 4.36q-2.803 1.51-6.298 1.511m0-5.267a6.3 6.3 0 0 0 3.063-.777q1.467-.82 2.329-2.418.864-1.598.863-3.885 0-3.41-1.812-5.224-1.768-1.857-4.356-1.856t-4.357 1.856q-1.726 1.813-1.726 5.224t1.683 5.267q1.725 1.813 4.313 1.813M200.877 7.875h-11.594l11.594 17.39zM172.125 38.25V7.875h8.372l20.38 30.375h-8.616l-13.412-19.709V38.25z"
17
+ />
18
+ </Svg>
19
+ );
20
+ export default SvgNeetoTower;
@@ -23,4 +23,5 @@ export { default as NeetoRunner } from "./NeetoRunner";
23
23
  export { default as NeetoSeo } from "./NeetoSeo";
24
24
  export { default as NeetoSite } from "./NeetoSite";
25
25
  export { default as NeetoTestify } from "./NeetoTestify";
26
+ export { default as NeetoTower } from "./NeetoTower";
26
27
  export { default as NeetoWireframe } from "./NeetoWireframe";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.19.2",
3
+ "version": "1.20.1",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",