@bigbinary/neeto-icons-rn 1.19.0 → 1.19.2
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/DeleteColumn.js +28 -0
- package/dist/icons/DeleteRow.js +29 -0
- package/dist/icons/DeleteTable.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/ToggleHeaderRow.js +26 -0
- package/dist/icons/index.js +7 -0
- package/package.json +1 -1
|
@@ -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,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 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;
|
package/dist/icons/index.js
CHANGED
|
@@ -48,6 +48,9 @@ export { default as Customers } from "./Customers";
|
|
|
48
48
|
export { default as Customize } from "./Customize";
|
|
49
49
|
export { default as Dashboard } from "./Dashboard";
|
|
50
50
|
export { default as Database } from "./Database";
|
|
51
|
+
export { default as DeleteColumn } from "./DeleteColumn";
|
|
52
|
+
export { default as DeleteRow } from "./DeleteRow";
|
|
53
|
+
export { default as DeleteTable } from "./DeleteTable";
|
|
51
54
|
export { default as Delete } from "./Delete";
|
|
52
55
|
export { default as Design } from "./Design";
|
|
53
56
|
export { default as Divider } from "./Divider";
|
|
@@ -102,6 +105,8 @@ export { default as Inbox } from "./Inbox";
|
|
|
102
105
|
export { default as IndeterminateCircle } from "./IndeterminateCircle";
|
|
103
106
|
export { default as Info } from "./Info";
|
|
104
107
|
export { default as Input } from "./Input";
|
|
108
|
+
export { default as InsertColumn } from "./InsertColumn";
|
|
109
|
+
export { default as InsertRow } from "./InsertRow";
|
|
105
110
|
export { default as Invoice } from "./Invoice";
|
|
106
111
|
export { default as IpAddress } from "./IpAddress";
|
|
107
112
|
export { default as Keyboard } from "./Keyboard";
|
|
@@ -123,6 +128,7 @@ export { default as MatrixDotsClear } from "./MatrixDotsClear";
|
|
|
123
128
|
export { default as MediaVideo } from "./MediaVideo";
|
|
124
129
|
export { default as MenuLayout } from "./MenuLayout";
|
|
125
130
|
export { default as MenuSquare } from "./MenuSquare";
|
|
131
|
+
export { default as MergeSplit } from "./MergeSplit";
|
|
126
132
|
export { default as Merge } from "./Merge";
|
|
127
133
|
export { default as MergedPullRequest } from "./MergedPullRequest";
|
|
128
134
|
export { default as Message } from "./Message";
|
|
@@ -188,6 +194,7 @@ export { default as TextLines } from "./TextLines";
|
|
|
188
194
|
export { default as TextSize } from "./TextSize";
|
|
189
195
|
export { default as Tickets } from "./Tickets";
|
|
190
196
|
export { default as TimeTracking } from "./TimeTracking";
|
|
197
|
+
export { default as ToggleHeaderRow } from "./ToggleHeaderRow";
|
|
191
198
|
export { default as Transaction } from "./Transaction";
|
|
192
199
|
export { default as Translate } from "./Translate";
|
|
193
200
|
export { default as Twitter } from "./Twitter";
|