@bigbinary/neeto-icons-rn 1.19.2 → 1.20.0
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/CustomSize.js +20 -0
- package/dist/icons/EntireScreen.js +26 -0
- package/dist/icons/MicOff.js +26 -0
- package/dist/icons/SpecificWindow.js +26 -0
- package/dist/icons/VideoOff.js +26 -0
- package/dist/icons/index.js +5 -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 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;
|
package/dist/icons/index.js
CHANGED
|
@@ -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";
|