@bigbinary/neeto-icons-rn 1.20.17 → 1.20.18
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/BoardView.js +24 -0
- package/dist/icons/ListView.js +30 -0
- package/dist/icons/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Rect, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgBoardView = (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
|
+
<G stroke={props.color} strokeWidth={1.5} clipPath="url(#BoardView_svg__a)">
|
|
12
|
+
<Path strokeLinecap="round" d="M4 3h6M14 3h6" />
|
|
13
|
+
<Rect width={6} height={5} x={4} y={7} rx={0.5} />
|
|
14
|
+
<Rect width={6} height={5} x={14} y={7} rx={0.5} />
|
|
15
|
+
<Rect width={6} height={5} x={4} y={15} rx={0.5} />
|
|
16
|
+
</G>
|
|
17
|
+
<Defs>
|
|
18
|
+
<ClipPath id="BoardView_svg__a">
|
|
19
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
20
|
+
</ClipPath>
|
|
21
|
+
</Defs>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
export default SvgBoardView;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Circle, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgListView = (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
|
+
<G clipPath="url(#ListView_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
d="M9 6h11M9 12h11M9 18h11"
|
|
18
|
+
/>
|
|
19
|
+
<Circle cx={5} cy={6} r={1} fill={props.color} />
|
|
20
|
+
<Circle cx={5} cy={12} r={1} fill={props.color} />
|
|
21
|
+
<Circle cx={5} cy={18} r={1} fill={props.color} />
|
|
22
|
+
</G>
|
|
23
|
+
<Defs>
|
|
24
|
+
<ClipPath id="ListView_svg__a">
|
|
25
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
26
|
+
</ClipPath>
|
|
27
|
+
</Defs>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
export default SvgListView;
|
package/dist/icons/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export { default as Articles } from "./Articles";
|
|
|
10
10
|
export { default as Assign } from "./Assign";
|
|
11
11
|
export { default as Attachment } from "./Attachment";
|
|
12
12
|
export { default as Bank } from "./Bank";
|
|
13
|
+
export { default as BoardView } from "./BoardView";
|
|
13
14
|
export { default as Book } from "./Book";
|
|
14
15
|
export { default as BookOpen } from "./BookOpen";
|
|
15
16
|
export { default as Braces } from "./Braces";
|
|
@@ -129,6 +130,7 @@ export { default as Link } from "./Link";
|
|
|
129
130
|
export { default as Linkedin } from "./Linkedin";
|
|
130
131
|
export { default as List } from "./List";
|
|
131
132
|
export { default as ListDetails } from "./ListDetails";
|
|
133
|
+
export { default as ListView } from "./ListView";
|
|
132
134
|
export { default as Loading } from "./Loading";
|
|
133
135
|
export { default as Location } from "./Location";
|
|
134
136
|
export { default as Lock } from "./Lock";
|