@bigbinary/neeto-icons-rn 1.20.16 → 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.
@@ -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,26 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgClearCache = (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="M20 6.375H4M15.541 21H8.46a2.25 2.25 0 0 1-2.244-2.077L5.25 6.375h13.5l-.965 12.548A2.25 2.25 0 0 1 15.54 21M9.187 3h5.626a1.125 1.125 0 0 1 1.124 1.125v2.25H8.063v-2.25A1.125 1.125 0 0 1 9.187 3"
17
+ />
18
+ <Path
19
+ stroke={props.color}
20
+ strokeLinecap="round"
21
+ strokeWidth={1.5}
22
+ d="m9 13 2 2 4-4"
23
+ />
24
+ </Svg>
25
+ );
26
+ export default SvgClearCache;
@@ -0,0 +1,20 @@
1
+ import * as React from "react";
2
+ import Svg, { Path } from "react-native-svg";
3
+ const SvgExpandSize = (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.2}
16
+ d="M16 4h4m0 0v4m0-4-6 6M8 20H4m0 0v-4m0 4 6-6m6 6h4m0 0v-4m0 4-6-6M8 4H4m0 0v4m0-4 6 6"
17
+ />
18
+ </Svg>
19
+ );
20
+ export default SvgExpandSize;
@@ -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;
@@ -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";
@@ -35,6 +36,7 @@ export { default as Checkbox } from "./Checkbox";
35
36
  export { default as CheckboxInactive } from "./CheckboxInactive";
36
37
  export { default as Checkmark } from "./Checkmark";
37
38
  export { default as Chrome } from "./Chrome";
39
+ export { default as ClearCache } from "./ClearCache";
38
40
  export { default as Clock } from "./Clock";
39
41
  export { default as Close } from "./Close";
40
42
  export { default as CloseCircle } from "./CloseCircle";
@@ -76,6 +78,7 @@ export { default as EntireScreen } from "./EntireScreen";
76
78
  export { default as Equals } from "./Equals";
77
79
  export { default as Error } from "./Error";
78
80
  export { default as Expand } from "./Expand";
81
+ export { default as ExpandSize } from "./ExpandSize";
79
82
  export { default as ExternalLink } from "./ExternalLink";
80
83
  export { default as Facebook } from "./Facebook";
81
84
  export { default as Favorite } from "./Favorite";
@@ -127,6 +130,7 @@ export { default as Link } from "./Link";
127
130
  export { default as Linkedin } from "./Linkedin";
128
131
  export { default as List } from "./List";
129
132
  export { default as ListDetails } from "./ListDetails";
133
+ export { default as ListView } from "./ListView";
130
134
  export { default as Loading } from "./Loading";
131
135
  export { default as Location } from "./Location";
132
136
  export { default as Lock } from "./Lock";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.16",
3
+ "version": "1.20.18",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",