@bigbinary/neeto-icons-rn 1.20.10 → 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/dist/typefaceLogos/NeetoEngage.js +25 -21
- 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";
|
|
@@ -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 SvgNeetoEngage = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -8,26 +8,30 @@ const SvgNeetoEngage = (props) => (
|
|
|
8
8
|
fill="none"
|
|
9
9
|
{...props}
|
|
10
10
|
>
|
|
11
|
-
<
|
|
12
|
-
fill="#75DC66"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
d="
|
|
26
|
-
|
|
27
|
-
<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
11
|
+
<G clipPath="url(#neetoEngage_svg__a)">
|
|
12
|
+
<Circle cx={60.062} cy={104.456} r={28.592} fill="#75DC66" />
|
|
13
|
+
<Path
|
|
14
|
+
fill="#5BCC5A"
|
|
15
|
+
d="M14.688 68.714c0-17.68 14.331-32.01 32.01-32.01h17.715v64.021H46.7c-17.68 0-32.011-14.332-32.011-32.01M64.413 36.704 128.48 9.325c4.101-1.752 8.658 1.256 8.658 5.716v107.348c0 4.459-4.557 7.468-8.658 5.715l-64.066-27.378z"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill="#0DA84C"
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
d="M64.413 76.192v24.533H46.698a31.9 31.9 0 0 1-14.336-3.382c3.161-12.35 14.365-21.48 27.7-21.48 1.48 0 2.932.113 4.35.33M87.953 110.78l-23.539-10.059V76.187c13.726 2.096 24.242 13.952 24.242 28.264 0 2.175-.243 4.293-.704 6.329"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
/>
|
|
23
|
+
</G>
|
|
24
|
+
<G fill="#000" clipPath="url(#neetoEngage_svg__b)">
|
|
25
|
+
<Path d="M188.913 67.98v20.18h27.098v12.799h-27.098v21.333h30.558v13.146h-46.702V54.834h46.702V67.98zm78.323 2.652q11.417 0 18.45 7.265 7.034 7.149 7.034 20.064v37.477h-16.144v-35.286q0-7.61-3.805-11.647-3.805-4.15-10.378-4.15-6.688 0-10.609 4.15-3.805 4.036-3.805 11.647v35.286h-16.144V71.554h16.144v7.957q3.229-4.151 8.187-6.458 5.075-2.421 11.07-2.421m63.553-.115q7.15 0 12.569 2.882 5.42 2.768 8.533 7.265v-9.11h16.259V135.9q0 8.879-3.575 15.798-3.575 7.034-10.724 11.07-7.15 4.15-17.297 4.151-13.607 0-22.37-6.342-8.649-6.342-9.802-17.297h16.029q1.268 4.381 5.419 6.919 4.268 2.652 10.263 2.652 7.034 0 11.416-4.267 4.382-4.15 4.382-12.684v-9.917q-3.114 4.497-8.649 7.495-5.42 2.998-12.453 2.998-8.073 0-14.76-4.151-6.688-4.151-10.609-11.647-3.805-7.61-3.805-17.412 0-9.685 3.805-17.181 3.92-7.495 10.493-11.532 6.689-4.035 14.876-4.035m21.102 32.979q0-5.88-2.306-10.032-2.307-4.267-6.227-6.458-3.921-2.306-8.418-2.306t-8.303 2.19q-3.805 2.193-6.226 6.458-2.307 4.152-2.307 9.917 0 5.766 2.307 10.148 2.421 4.266 6.226 6.573 3.921 2.306 8.303 2.306 4.497 0 8.418-2.191 3.92-2.306 6.227-6.458 2.306-4.266 2.306-10.147m25.569-.231q0-9.685 3.805-17.181 3.92-7.495 10.493-11.532 6.689-4.035 14.876-4.035 7.149 0 12.453 2.882 5.42 2.883 8.649 7.265v-9.11h16.259v63.884h-16.259v-9.341q-3.114 4.497-8.649 7.495-5.419 2.883-12.569 2.883-8.072 0-14.76-4.151-6.573-4.151-10.493-11.647-3.805-7.61-3.805-17.412m50.276.231q0-5.88-2.306-10.032-2.307-4.267-6.227-6.458-3.921-2.306-8.418-2.306t-8.303 2.19q-3.804 2.193-6.226 6.458-2.307 4.152-2.307 9.917 0 5.766 2.307 10.148 2.422 4.266 6.226 6.573 3.921 2.306 8.303 2.306 4.497 0 8.418-2.191 3.92-2.306 6.227-6.458 2.306-4.266 2.306-10.147m54.743-32.98q7.15 0 12.569 2.883 5.42 2.768 8.533 7.265v-9.11h16.259V135.9q0 8.879-3.575 15.798-3.575 7.034-10.724 11.07-7.15 4.15-17.297 4.151-13.607 0-22.37-6.342-8.649-6.342-9.802-17.297H472.1q1.27 4.381 5.42 6.919 4.267 2.652 10.263 2.652 7.034 0 11.416-4.267 4.382-4.15 4.382-12.684v-9.917q-3.114 4.497-8.649 7.495-5.42 2.998-12.453 2.998-8.073 0-14.76-4.151-6.688-4.151-10.609-11.647-3.805-7.61-3.805-17.412 0-9.685 3.805-17.181 3.92-7.495 10.493-11.532 6.688-4.035 14.876-4.035m21.102 32.98q0-5.88-2.306-10.032-2.307-4.267-6.227-6.458-3.921-2.306-8.418-2.306t-8.303 2.19q-3.805 2.193-6.227 6.458-2.306 4.152-2.306 9.917 0 5.766 2.306 10.148 2.422 4.266 6.227 6.573 3.921 2.306 8.303 2.306 4.497 0 8.418-2.191 3.92-2.306 6.227-6.458 2.306-4.266 2.306-10.147m89.106-1.384q0 3.46-.462 6.227h-46.701q.577 6.92 4.843 10.839 4.266 3.921 10.493 3.921 8.995 0 12.8-7.726h17.412q-2.768 9.225-10.608 15.221-7.842 5.881-19.258 5.881-9.225 0-16.605-4.036-7.264-4.15-11.416-11.646-4.035-7.496-4.035-17.297 0-9.917 4.035-17.412t11.301-11.532q7.265-4.035 16.72-4.035 9.11 0 16.259 3.92 7.265 3.92 11.186 11.186 4.036 7.149 4.036 16.489M575.966 97.5q-.115-6.228-4.497-9.917-4.382-3.805-10.724-3.805-5.996 0-10.147 3.69-4.037 3.575-4.959 10.032zM229.747 25.385q0 1.295-.173 2.331h-17.471q.216 2.59 1.812 4.058t3.926 1.468q3.364 0 4.788-2.892h6.514q-1.036 3.453-3.969 5.698-2.933 2.202-7.204 2.202-3.451 0-6.212-1.511-2.717-1.555-4.27-4.36-1.51-2.807-1.51-6.476 0-3.713 1.51-6.52 1.509-2.806 4.227-4.316 2.718-1.511 6.255-1.511 3.408 0 6.082 1.467a10.12 10.12 0 0 1 4.185 4.188q1.51 2.677 1.51 6.174m-6.255-1.727q-.043-2.331-1.683-3.713-1.639-1.425-4.011-1.425-2.244 0-3.796 1.382-1.51 1.338-1.855 3.756zM256.37 25.385q0 1.295-.172 2.331h-17.471q.216 2.59 1.812 4.058t3.926 1.468q3.364 0 4.788-2.892h6.513q-1.035 3.453-3.968 5.698-2.934 2.202-7.204 2.202-3.451 0-6.212-1.511-2.718-1.555-4.27-4.36-1.51-2.807-1.51-6.476 0-3.713 1.51-6.52 1.509-2.806 4.227-4.316 2.718-1.511 6.255-1.511 3.408 0 6.082 1.467a10.12 10.12 0 0 1 4.185 4.188q1.509 2.677 1.509 6.174m-6.255-1.727q-.042-2.331-1.682-3.713-1.64-1.425-4.012-1.425-2.242 0-3.796 1.382-1.51 1.338-1.855 3.756zM267.91 18.862v11.675c0 .805.212 1.338.586 1.712q.604.518 1.985.518h2.804v5.094h-3.796c-5.091 0-7.526-2.603-7.526-7.553V18.862h-3.202v-5.035h3.202V7.874h5.947v5.951h5.375v5.036zM288.114 38.25q-3.45 0-6.211-1.511-2.761-1.555-4.357-4.36-1.553-2.807-1.553-6.476t1.596-6.476q1.64-2.806 4.443-4.317 2.804-1.554 6.255-1.554t6.255 1.554q2.804 1.51 4.4 4.317 1.64 2.806 1.639 6.476t-1.682 6.476a11.47 11.47 0 0 1-4.487 4.36q-2.803 1.51-6.298 1.511m0-5.267a6.3 6.3 0 0 0 3.063-.777q1.466-.82 2.33-2.418.862-1.598.862-3.885 0-3.41-1.812-5.224-1.768-1.857-4.356-1.856t-4.357 1.856q-1.726 1.813-1.726 5.224t1.683 5.267q1.725 1.813 4.313 1.813M200.877 7.875h-11.593l11.593 17.39zM172.125 38.25V7.875h8.372l20.38 30.375h-8.616l-13.412-19.709V38.25z" />
|
|
26
|
+
</G>
|
|
27
|
+
<Defs>
|
|
28
|
+
<ClipPath id="neetoEngage_svg__a">
|
|
29
|
+
<Path fill={props.color} d="M11.875 7.875h128.25v128.25H11.875z" />
|
|
30
|
+
</ClipPath>
|
|
31
|
+
<ClipPath id="neetoEngage_svg__b">
|
|
32
|
+
<Path fill={props.color} d="M163.688 0h440.438v168.75H163.688z" />
|
|
33
|
+
</ClipPath>
|
|
34
|
+
</Defs>
|
|
31
35
|
</Svg>
|
|
32
36
|
);
|
|
33
37
|
export default SvgNeetoEngage;
|