@bigbinary/neeto-icons-rn 1.20.41 → 1.20.43

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,30 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgBringToBack = (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(#BringToBack_svg__a)">
12
+ <Path
13
+ fill="#0C111D"
14
+ d="M9 15h6v4H5V9h4z"
15
+ data-dark-mode-fill-color="true"
16
+ />
17
+ <Path
18
+ stroke="#0C111D"
19
+ d="M9.5 5.5h9v9h-9z"
20
+ data-dark-mode-stroke-color="true"
21
+ />
22
+ </G>
23
+ <Defs>
24
+ <ClipPath id="BringToBack_svg__a">
25
+ <Path fill={props.color} d="M0 0h24v24H0z" />
26
+ </ClipPath>
27
+ </Defs>
28
+ </Svg>
29
+ );
30
+ export default SvgBringToBack;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgBringToFront = (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 fill="#0C111D" clipPath="url(#BringToFront_svg__a)">
12
+ <Path
13
+ d="M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4z"
14
+ data-dark-mode-fill-color="true"
15
+ />
16
+ <Path d="M9 5h10v10H9z" data-dark-mode-fill-color="true" />
17
+ </G>
18
+ <Defs>
19
+ <ClipPath id="BringToFront_svg__a">
20
+ <Path fill={props.color} d="M0 0h24v24H0z" />
21
+ </ClipPath>
22
+ </Defs>
23
+ </Svg>
24
+ );
25
+ export default SvgBringToFront;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMoveBackward = (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 fill="#0C111D" clipPath="url(#MoveBackward_svg__a)">
12
+ <Path
13
+ d="M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4z"
14
+ data-dark-mode-fill-color="true"
15
+ />
16
+ <Path
17
+ d="M19 15H9V5h10zm-5-7.333a.333.333 0 0 0-.333.333v3.196l-1.432-1.431-.051-.043a.333.333 0 0 0-.462.462l.043.051 2 2c.114.114.29.129.419.043l.051-.043 2-2a.333.333 0 1 0-.47-.47l-1.432 1.431V8A.333.333 0 0 0 14 7.667"
18
+ data-dark-mode-fill-color="true"
19
+ />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="MoveBackward_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgMoveBackward;
@@ -0,0 +1,28 @@
1
+ import * as React from "react";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
+ const SvgMoveForward = (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 fill="#0C111D" clipPath="url(#MoveForward_svg__a)">
12
+ <Path
13
+ d="M9 10.111H6.111v7.778h7.778V15H15v4H5V9h4z"
14
+ data-dark-mode-fill-color="true"
15
+ />
16
+ <Path
17
+ d="M19 15H9V5h10zm-4.765-7.235a.33.33 0 0 0-.419-.043l-.051.043-2 2a.333.333 0 1 0 .47.47l1.432-1.431V12a.333.333 0 1 0 .666 0V8.804l1.432 1.431.051.043a.333.333 0 0 0 .462-.462l-.043-.051z"
18
+ data-dark-mode-fill-color="true"
19
+ />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="MoveForward_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
26
+ </Svg>
27
+ );
28
+ export default SvgMoveForward;
@@ -2,6 +2,8 @@ export { default as Alert } from "./Alert";
2
2
  export { default as AndroidMockup } from "./AndroidMockup";
3
3
  export { default as Arrow } from "./Arrow";
4
4
  export { default as Avatar } from "./Avatar";
5
+ export { default as BringToBack } from "./BringToBack";
6
+ export { default as BringToFront } from "./BringToFront";
5
7
  export { default as Browser } from "./Browser";
6
8
  export { default as Button } from "./Button";
7
9
  export { default as Calendar } from "./Calendar";
@@ -17,6 +19,8 @@ export { default as Line } from "./Line";
17
19
  export { default as LineChart } from "./LineChart";
18
20
  export { default as Link } from "./Link";
19
21
  export { default as List } from "./List";
22
+ export { default as MoveBackward } from "./MoveBackward";
23
+ export { default as MoveForward } from "./MoveForward";
20
24
  export { default as Notes } from "./Notes";
21
25
  export { default as Overlay } from "./Overlay";
22
26
  export { default as PieChart } from "./PieChart";
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Svg, { Path } from "react-native-svg";
2
+ import Svg, { G, Circle, Path, Defs, ClipPath } from "react-native-svg";
3
3
  const SvgHelp = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,20 +8,18 @@ const SvgHelp = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
12
- stroke={props.color}
13
- strokeLinecap="round"
14
- strokeLinejoin="round"
15
- strokeWidth={1.5}
16
- d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10"
17
- />
18
- <Path
19
- stroke={props.color}
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- strokeWidth={1.5}
23
- d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h.01"
24
- />
11
+ <G clipPath="url(#Help_svg__a)">
12
+ <Circle cx={12} cy={12} r={10} stroke={props.color} strokeWidth={1.5} />
13
+ <Path
14
+ fill={props.color}
15
+ d="M10.896 14.806q0-.588.09-1.103.098-.515.36-.98.22-.441.514-.71a8 8 0 0 1 .653-.54q.36-.27.752-.686.327-.36.433-.727.114-.368.114-.792 0-.31-.073-.58a1.16 1.16 0 0 0-.245-.466 1.38 1.38 0 0 0-.662-.458 2.638 2.638 0 0 0-1.585-.033q-.351.107-.588.328a1.3 1.3 0 0 0-.376.53 1.8 1.8 0 0 0-.106.679H8.38q.066-.769.392-1.438.327-.67.882-1.087a3.2 3.2 0 0 1 1.079-.555A4 4 0 0 1 11.942 6q.865 0 1.633.27.777.269 1.291.874.375.425.564.972.195.54.196 1.119 0 .776-.335 1.438a5 5 0 0 1-.842 1.209q-.27.285-.547.522a11 11 0 0 0-.514.45 2.2 2.2 0 0 0-.393.482q-.22.375-.253.678-.033.294-.033.792zM10.904 18v-1.977h1.806V18z"
16
+ />
17
+ </G>
18
+ <Defs>
19
+ <ClipPath id="Help_svg__a">
20
+ <Path fill={props.color} d="M0 0h24v24H0z" />
21
+ </ClipPath>
22
+ </Defs>
25
23
  </Svg>
26
24
  );
27
25
  export default SvgHelp;
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import Svg, { Path, Rect } from "react-native-svg";
2
+ import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
3
3
  const SvgMyPreferences = (props) => (
4
4
  <Svg
5
5
  xmlns="http://www.w3.org/2000/svg"
@@ -8,41 +8,21 @@ const SvgMyPreferences = (props) => (
8
8
  fill="none"
9
9
  {...props}
10
10
  >
11
- <Path
11
+ <G
12
12
  stroke={props.color}
13
13
  strokeLinecap="round"
14
14
  strokeLinejoin="round"
15
15
  strokeWidth={1.5}
16
- d="M16.568 3a.5.5 0 0 1 .47.331l.254.708c.04.11.119.204.221.264l.753.434a.5.5 0 0 0 .339.06l.74-.134a.5.5 0 0 1 .523.242l.4.69a.5.5 0 0 1-.05.573l-.486.574a.5.5 0 0 0-.119.323v.87a.5.5 0 0 0 .119.323l.486.574a.5.5 0 0 1 .05.573l-.4.69a.5.5 0 0 1-.522.242l-.74-.133a.5.5 0 0 0-.339.058l-.753.435a.5.5 0 0 0-.221.264l-.255.708a.5.5 0 0 1-.47.331h-.8a.5.5 0 0 1-.471-.331l-.254-.708a.5.5 0 0 0-.22-.264l-.755-.434c-.102-.06-.222-.08-.338-.06l-.74.134a.5.5 0 0 1-.523-.242l-.4-.69a.5.5 0 0 1 .05-.573l.486-.574a.5.5 0 0 0 .119-.323v-.87a.5.5 0 0 0-.119-.323l-.48-.574a.5.5 0 0 1-.05-.573l.4-.69a.5.5 0 0 1 .521-.242l.74.133a.5.5 0 0 0 .339-.059l.754-.434a.5.5 0 0 0 .22-.264l.255-.708A.5.5 0 0 1 15.768 3z"
17
- />
18
- <Path
19
- stroke={props.color}
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- strokeWidth={1.5}
23
- d="M16.168 8.875a1.375 1.375 0 1 0 0-2.75 1.375 1.375 0 0 0 0 2.75"
24
- />
25
- <Rect
26
- width={3}
27
- height={8}
28
- x={2}
29
- y={12}
30
- stroke={props.color}
31
- strokeWidth={1.5}
32
- rx={1}
33
- />
34
- <Path
35
- stroke={props.color}
36
- strokeLinecap="round"
37
- strokeWidth={1.5}
38
- d="m5.5 13 2.362-.787c.405-.135.85-.09 1.22.126l4.138 2.414c.704.411.937 1.319.517 2.018v0c-.41.683-1.29.913-1.981.518L9.5 16"
39
- />
40
- <Path
41
- stroke={props.color}
42
- strokeLinecap="round"
43
- strokeWidth={1.5}
44
- d="m14 17 5.092-1.175a1.59 1.59 0 0 1 1.865 1.046v0a1.59 1.59 0 0 1-1.123 2.045L12.26 20.81a2.12 2.12 0 0 1-1.46-.16l-3.514-1.757a2.12 2.12 0 0 0-1.62-.115L5 19"
45
- />
16
+ clipPath="url(#MyPreferences_svg__a)"
17
+ >
18
+ <Path d="M5 7a4 4 0 1 0 8 0 4 4 0 0 0-8 0M3 21v-2a4 4 0 0 1 4-4h4M18.932 13a.53.53 0 0 1 .31.101c.091.066.16.16.198.267l.274.786a.56.56 0 0 0 .239.293l.813.484c.11.065.24.088.366.065l.799-.148a.53.53 0 0 1 .323.042.55.55 0 0 1 .241.227l.432.766a.57.57 0 0 1-.054.637l-.524.638a.56.56 0 0 0-.128.359v.966c0 .132.045.259.128.36l.524.637a.56.56 0 0 1 .054.637l-.432.766a.55.55 0 0 1-.24.227.53.53 0 0 1-.323.042l-.8-.148a.53.53 0 0 0-.365.065l-.814.484a.56.56 0 0 0-.238.293l-.274.786a.55.55 0 0 1-.198.267.53.53 0 0 1-.311.101h-.864a.53.53 0 0 1-.31-.101.55.55 0 0 1-.198-.267l-.274-.786a.56.56 0 0 0-.238-.293l-.814-.484a.53.53 0 0 0-.366-.065l-.799.148a.53.53 0 0 1-.324-.042.55.55 0 0 1-.24-.227l-.432-.766a.57.57 0 0 1 .054-.637l.524-.638a.56.56 0 0 0 .128-.359v-.966a.56.56 0 0 0-.128-.36l-.519-.637a.56.56 0 0 1-.054-.637l.432-.766a.526.526 0 0 1 .564-.269l.799.148c.125.023.255 0 .365-.065l.815-.484a.56.56 0 0 0 .238-.293l.274-.786a.55.55 0 0 1 .195-.265.53.53 0 0 1 .308-.103z" />
19
+ <Path d="M18.5 19.528c.82 0 1.485-.684 1.485-1.528s-.665-1.528-1.485-1.528-1.485.684-1.485 1.528.665 1.528 1.485 1.528" />
20
+ </G>
21
+ <Defs>
22
+ <ClipPath id="MyPreferences_svg__a">
23
+ <Path fill={props.color} d="M0 0h24v24H0z" />
24
+ </ClipPath>
25
+ </Defs>
46
26
  </Svg>
47
27
  );
48
28
  export default SvgMyPreferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.20.41",
3
+ "version": "1.20.43",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",