@bigbinary/neeto-icons-rn 1.20.11 → 1.20.12
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/Assign.js +27 -0
- package/dist/icons/Concat.js +31 -0
- package/dist/icons/Divide.js +36 -0
- package/dist/icons/Equals.js +27 -0
- package/dist/icons/Prepend.js +31 -0
- package/dist/icons/index.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgAssign = (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
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={1.5}
|
|
16
|
+
clipPath="url(#Assign_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M18 20v-1a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v1M10 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8M21 11h-4M19 13V9" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Assign_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgAssign;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgConcat = (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(#Concat_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
d="M5 5h14M5 11h14M5 17h7"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
fill={props.color}
|
|
21
|
+
d="m14.894 16.553 4.382-2.191a.5.5 0 0 1 .724.447v4.382a.5.5 0 0 1-.724.447l-4.382-2.19a.5.5 0 0 1 0-.895"
|
|
22
|
+
/>
|
|
23
|
+
</G>
|
|
24
|
+
<Defs>
|
|
25
|
+
<ClipPath id="Concat_svg__a">
|
|
26
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
27
|
+
</ClipPath>
|
|
28
|
+
</Defs>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
export default SvgConcat;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgDivide = (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(#Divide_svg__a)">
|
|
12
|
+
<G
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
clipPath="url(#Divide_svg__b)"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
fill={props.color}
|
|
21
|
+
d="M12 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2M12 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2"
|
|
22
|
+
/>
|
|
23
|
+
<Path d="M5 12h14" />
|
|
24
|
+
</G>
|
|
25
|
+
</G>
|
|
26
|
+
<Defs>
|
|
27
|
+
<ClipPath id="Divide_svg__a">
|
|
28
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
29
|
+
</ClipPath>
|
|
30
|
+
<ClipPath id="Divide_svg__b">
|
|
31
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
32
|
+
</ClipPath>
|
|
33
|
+
</Defs>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
export default SvgDivide;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgEquals = (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
|
|
12
|
+
stroke={props.color}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth={2}
|
|
16
|
+
clipPath="url(#Equals_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M5 9h14M5 15h14" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Equals_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgEquals;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgPrepend = (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(#Prepend_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
d="M5 5h14M5 11h14M12 17h7"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
fill={props.color}
|
|
21
|
+
d="m9.106 16.553-4.382-2.191a.5.5 0 0 0-.724.447v4.382a.5.5 0 0 0 .724.447l4.382-2.19a.5.5 0 0 0 0-.895"
|
|
22
|
+
/>
|
|
23
|
+
</G>
|
|
24
|
+
<Defs>
|
|
25
|
+
<ClipPath id="Prepend_svg__a">
|
|
26
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
27
|
+
</ClipPath>
|
|
28
|
+
</Defs>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
export default SvgPrepend;
|
package/dist/icons/index.js
CHANGED
|
@@ -7,6 +7,7 @@ export { default as AppSwitcher } from "./AppSwitcher";
|
|
|
7
7
|
export { default as Apple } from "./Apple";
|
|
8
8
|
export { default as Archive } from "./Archive";
|
|
9
9
|
export { default as Articles } from "./Articles";
|
|
10
|
+
export { default as Assign } from "./Assign";
|
|
10
11
|
export { default as Attachment } from "./Attachment";
|
|
11
12
|
export { default as Bank } from "./Bank";
|
|
12
13
|
export { default as Book } from "./Book";
|
|
@@ -40,6 +41,7 @@ export { default as CodeBlock } from "./CodeBlock";
|
|
|
40
41
|
export { default as Collapse } from "./Collapse";
|
|
41
42
|
export { default as Column } from "./Column";
|
|
42
43
|
export { default as Computer } from "./Computer";
|
|
44
|
+
export { default as Concat } from "./Concat";
|
|
43
45
|
export { default as ContactBook } from "./ContactBook";
|
|
44
46
|
export { default as Copy } from "./Copy";
|
|
45
47
|
export { default as CreditCard } from "./CreditCard";
|
|
@@ -55,6 +57,7 @@ export { default as DeleteRow } from "./DeleteRow";
|
|
|
55
57
|
export { default as DeleteTable } from "./DeleteTable";
|
|
56
58
|
export { default as Delete } from "./Delete";
|
|
57
59
|
export { default as Design } from "./Design";
|
|
60
|
+
export { default as Divide } from "./Divide";
|
|
58
61
|
export { default as Divider } from "./Divider";
|
|
59
62
|
export { default as DoubleCheck } from "./DoubleCheck";
|
|
60
63
|
export { default as Down } from "./Down";
|
|
@@ -68,6 +71,7 @@ export { default as Edit } from "./Edit";
|
|
|
68
71
|
export { default as Email } from "./Email";
|
|
69
72
|
export { default as EmailSent } from "./EmailSent";
|
|
70
73
|
export { default as EntireScreen } from "./EntireScreen";
|
|
74
|
+
export { default as Equals } from "./Equals";
|
|
71
75
|
export { default as Error } from "./Error";
|
|
72
76
|
export { default as Expand } from "./Expand";
|
|
73
77
|
export { default as ExternalLink } from "./ExternalLink";
|
|
@@ -153,6 +157,7 @@ export { default as Phone } from "./Phone";
|
|
|
153
157
|
export { default as PhoneRing } from "./PhoneRing";
|
|
154
158
|
export { default as Play } from "./Play";
|
|
155
159
|
export { default as Plus } from "./Plus";
|
|
160
|
+
export { default as Prepend } from "./Prepend";
|
|
156
161
|
export { default as Print } from "./Print";
|
|
157
162
|
export { default as Puzzle } from "./Puzzle";
|
|
158
163
|
export { default as QrCode } from "./QrCode";
|