@bigbinary/neeto-icons-rn 1.19.1 → 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/DeleteColumn.js +28 -0
- package/dist/icons/DeleteRow.js +29 -0
- package/dist/icons/DeleteTable.js +26 -0
- package/dist/icons/EntireScreen.js +26 -0
- package/dist/icons/InsertColumn.js +28 -0
- package/dist/icons/InsertRow.js +29 -0
- package/dist/icons/MergeSplit.js +26 -0
- package/dist/icons/MicOff.js +26 -0
- package/dist/icons/SpecificWindow.js +26 -0
- package/dist/icons/ToggleHeaderRow.js +26 -0
- package/dist/icons/VideoOff.js +26 -0
- package/dist/icons/index.js +12 -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,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgDeleteColumn = (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
|
|
12
|
+
width={6.5}
|
|
13
|
+
height={14.5}
|
|
14
|
+
x={4.75}
|
|
15
|
+
y={4.75}
|
|
16
|
+
stroke={props.color}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
rx={1.25}
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
stroke={props.color}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeWidth={1.5}
|
|
24
|
+
d="m14.879 9.879 4.242 4.242M19.121 9.879 14.88 14.12"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgDeleteColumn;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgDeleteRow = (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
|
|
12
|
+
width={6.5}
|
|
13
|
+
height={14.5}
|
|
14
|
+
x={19.25}
|
|
15
|
+
y={4.75}
|
|
16
|
+
stroke={props.color}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
rx={1.25}
|
|
19
|
+
transform="rotate(90 19.25 4.75)"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
stroke={props.color}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeWidth={1.5}
|
|
25
|
+
d="M14.743 15.257 10.5 19.5M14.743 19.5 10.5 15.257"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgDeleteRow;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgDeleteTable = (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="M4 10h5.5M20 10h-7m-3-6v3m10 10V6a2 2 0 0 0-2-2H7m13 16H6a2 2 0 0 1-2-2V4"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
d="M20 20 4 4"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgDeleteTable;
|
|
@@ -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,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgInsertColumn = (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
|
|
12
|
+
width={6.5}
|
|
13
|
+
height={14.5}
|
|
14
|
+
x={12.75}
|
|
15
|
+
y={4.75}
|
|
16
|
+
stroke={props.color}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
rx={1.25}
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
stroke={props.color}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeWidth={1.5}
|
|
24
|
+
d="M7 9v6M10 12H4"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
export default SvgInsertColumn;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgInsertRow = (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
|
|
12
|
+
width={6.5}
|
|
13
|
+
height={14.5}
|
|
14
|
+
x={19.25}
|
|
15
|
+
y={12.75}
|
|
16
|
+
stroke={props.color}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
rx={1.25}
|
|
19
|
+
transform="rotate(90 19.25 12.75)"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
stroke={props.color}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeWidth={1.5}
|
|
25
|
+
d="M15 7H9M12 10V4"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgInsertRow;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgMergeSplit = (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="M16.2 21H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 18.72 3 17.88 3 16.2V7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C5.28 3 6.12 3 7.8 3h8.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C21 5.28 21 6.12 21 7.8v8.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 21 17.88 21 16.2 21"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
d="M3 8h17.5M3 16h17.5M12 14v-4"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgMergeSplit;
|
|
@@ -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 SvgToggleHeaderRow = (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="M16.2 21H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 18.72 3 17.88 3 16.2V7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C5.28 3 6.12 3 7.8 3h8.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C21 5.28 21 6.12 21 7.8v8.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 21 17.88 21 16.2 21"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
d="M3 10h17.5M10 21V10M4.5 9.526 8.5 3M8.5 9.526 12.5 3M12.5 9.526 16.5 3M16.5 9.444l3.285-5.362"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgToggleHeaderRow;
|
|
@@ -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,10 +44,14 @@ 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";
|
|
50
51
|
export { default as Database } from "./Database";
|
|
52
|
+
export { default as DeleteColumn } from "./DeleteColumn";
|
|
53
|
+
export { default as DeleteRow } from "./DeleteRow";
|
|
54
|
+
export { default as DeleteTable } from "./DeleteTable";
|
|
51
55
|
export { default as Delete } from "./Delete";
|
|
52
56
|
export { default as Design } from "./Design";
|
|
53
57
|
export { default as Divider } from "./Divider";
|
|
@@ -62,6 +66,7 @@ export { default as DropdownClosed } from "./DropdownClosed";
|
|
|
62
66
|
export { default as Edit } from "./Edit";
|
|
63
67
|
export { default as Email } from "./Email";
|
|
64
68
|
export { default as EmailSent } from "./EmailSent";
|
|
69
|
+
export { default as EntireScreen } from "./EntireScreen";
|
|
65
70
|
export { default as Error } from "./Error";
|
|
66
71
|
export { default as Expand } from "./Expand";
|
|
67
72
|
export { default as ExternalLink } from "./ExternalLink";
|
|
@@ -102,6 +107,8 @@ export { default as Inbox } from "./Inbox";
|
|
|
102
107
|
export { default as IndeterminateCircle } from "./IndeterminateCircle";
|
|
103
108
|
export { default as Info } from "./Info";
|
|
104
109
|
export { default as Input } from "./Input";
|
|
110
|
+
export { default as InsertColumn } from "./InsertColumn";
|
|
111
|
+
export { default as InsertRow } from "./InsertRow";
|
|
105
112
|
export { default as Invoice } from "./Invoice";
|
|
106
113
|
export { default as IpAddress } from "./IpAddress";
|
|
107
114
|
export { default as Keyboard } from "./Keyboard";
|
|
@@ -123,12 +130,14 @@ export { default as MatrixDotsClear } from "./MatrixDotsClear";
|
|
|
123
130
|
export { default as MediaVideo } from "./MediaVideo";
|
|
124
131
|
export { default as MenuLayout } from "./MenuLayout";
|
|
125
132
|
export { default as MenuSquare } from "./MenuSquare";
|
|
133
|
+
export { default as MergeSplit } from "./MergeSplit";
|
|
126
134
|
export { default as Merge } from "./Merge";
|
|
127
135
|
export { default as MergedPullRequest } from "./MergedPullRequest";
|
|
128
136
|
export { default as Message } from "./Message";
|
|
129
137
|
export { default as MessageBubble } from "./MessageBubble";
|
|
130
138
|
export { default as MessageSquare } from "./MessageSquare";
|
|
131
139
|
export { default as Mic } from "./Mic";
|
|
140
|
+
export { default as MicOff } from "./MicOff";
|
|
132
141
|
export { default as Minus } from "./Minus";
|
|
133
142
|
export { default as Mobile } from "./Mobile";
|
|
134
143
|
export { default as Moon } from "./Moon";
|
|
@@ -174,6 +183,7 @@ export { default as Share } from "./Share";
|
|
|
174
183
|
export { default as SidebarClose } from "./SidebarClose";
|
|
175
184
|
export { default as SidebarOpen } from "./SidebarOpen";
|
|
176
185
|
export { default as Smiley } from "./Smiley";
|
|
186
|
+
export { default as SpecificWindow } from "./SpecificWindow";
|
|
177
187
|
export { default as Status } from "./Status";
|
|
178
188
|
export { default as Subdomain } from "./Subdomain";
|
|
179
189
|
export { default as Suitcase } from "./Suitcase";
|
|
@@ -188,6 +198,7 @@ export { default as TextLines } from "./TextLines";
|
|
|
188
198
|
export { default as TextSize } from "./TextSize";
|
|
189
199
|
export { default as Tickets } from "./Tickets";
|
|
190
200
|
export { default as TimeTracking } from "./TimeTracking";
|
|
201
|
+
export { default as ToggleHeaderRow } from "./ToggleHeaderRow";
|
|
191
202
|
export { default as Transaction } from "./Transaction";
|
|
192
203
|
export { default as Translate } from "./Translate";
|
|
193
204
|
export { default as Twitter } from "./Twitter";
|
|
@@ -205,6 +216,7 @@ export { default as UserRoundedRect } from "./UserRoundedRect";
|
|
|
205
216
|
export { default as UserSettings } from "./UserSettings";
|
|
206
217
|
export { default as UserStar } from "./UserStar";
|
|
207
218
|
export { default as Video } from "./Video";
|
|
219
|
+
export { default as VideoOff } from "./VideoOff";
|
|
208
220
|
export { default as Volume } from "./Volume";
|
|
209
221
|
export { default as Volume0 } from "./Volume0";
|
|
210
222
|
export { default as Volume100 } from "./Volume100";
|