@bigbinary/neeto-icons-rn 1.20.9 → 1.20.11
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/appIcons/NeetoEngage.js +37 -0
- package/dist/appIcons/index.js +1 -0
- package/dist/icons/NeetoEngage.js +27 -0
- package/dist/icons/index.js +1 -0
- package/dist/logos/NeetoEngage.js +36 -0
- package/dist/logos/index.js +1 -0
- package/dist/typefaceLogos/NeetoEngage.js +37 -0
- package/dist/typefaceLogos/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgNeetoEngage = (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
|
+
<Rect width={800} height={800} fill="#000" rx={160} />
|
|
12
|
+
<G clipPath="url(#NeetoEngage_svg__a)">
|
|
13
|
+
<Path
|
|
14
|
+
fill="#75DC66"
|
|
15
|
+
d="M435.43 493.486c0 44.274-35.89 80.165-80.164 80.165s-80.164-35.891-80.164-80.165c0-44.273 35.891-80.164 80.164-80.164s80.164 35.891 80.164 80.164"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
fill="#5BCC5A"
|
|
19
|
+
d="M228.051 393.284c0-49.567 40.182-89.749 89.749-89.749h49.667v179.498H317.8c-49.567 0-89.749-40.182-89.749-89.749"
|
|
20
|
+
/>
|
|
21
|
+
<Path
|
|
22
|
+
fill="#5BCC5A"
|
|
23
|
+
d="m367.466 303.532 179.62-76.761c11.498-4.913 24.275 3.522 24.275 16.025v300.97c0 12.503-12.777 20.939-24.275 16.025l-179.62-76.761z"
|
|
24
|
+
/>
|
|
25
|
+
<Path
|
|
26
|
+
fill="#0DA84C"
|
|
27
|
+
d="M367.466 414.243v68.787l-49.666.003c-14.451 0-28.105-3.417-40.197-9.484 8.863-34.629 40.275-60.228 77.666-60.228a81 81 0 0 1 12.197.922M433.461 511.231l-65.995-28.201v-68.787c38.484 5.876 67.964 39.118 67.964 79.243 0 6.099-.679 12.036-1.969 17.745"
|
|
28
|
+
/>
|
|
29
|
+
</G>
|
|
30
|
+
<Defs>
|
|
31
|
+
<ClipPath id="NeetoEngage_svg__a">
|
|
32
|
+
<Path fill={props.color} d="M225.35 225.35h348.3v348.3h-348.3z" />
|
|
33
|
+
</ClipPath>
|
|
34
|
+
</Defs>
|
|
35
|
+
</Svg>
|
|
36
|
+
);
|
|
37
|
+
export default SvgNeetoEngage;
|
package/dist/appIcons/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export { default as NeetoCode } from "./NeetoCode";
|
|
|
8
8
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
9
9
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
10
10
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
11
|
+
export { default as NeetoEngage } from "./NeetoEngage";
|
|
11
12
|
export { default as NeetoForm } from "./NeetoForm";
|
|
12
13
|
export { default as NeetoGit } from "./NeetoGit";
|
|
13
14
|
export { default as NeetoInvisible } from "./NeetoInvisible";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgNeetoEngage = (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="M18 3H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
stroke={props.color}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
d="M10 7H7.5a.5.5 0 0 0-.5.5V10a.5.5 0 0 0 .5.5H10a.5.5 0 0 0 .5-.5V7.5A.5.5 0 0 0 10 7M13.5 7H17M13.5 10.33H17M10 13.5H7.5a.5.5 0 0 0-.5.5v2.5a.5.5 0 0 0 .5.5H10a.5.5 0 0 0 .5-.5V14a.5.5 0 0 0-.5-.5M13.5 13.5H17M13.5 16.83H17"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgNeetoEngage;
|
package/dist/icons/index.js
CHANGED
|
@@ -257,6 +257,7 @@ export { default as NeetoCal } from "./NeetoCal";
|
|
|
257
257
|
export { default as NeetoChangelog } from "./NeetoChangelog";
|
|
258
258
|
export { default as NeetoChat } from "./NeetoChat";
|
|
259
259
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
260
|
+
export { default as NeetoEngage } from "./NeetoEngage";
|
|
260
261
|
export { default as NeetoForm } from "./NeetoForm";
|
|
261
262
|
export { default as NeetoIcon } from "./NeetoIcon";
|
|
262
263
|
export { default as NeetoInsights } from "./NeetoInsights";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgNeetoEngage = (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(#NeetoEngage_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
fill="#75DC66"
|
|
14
|
+
d="M210.43 268.486c0 44.274-35.89 80.165-80.164 80.165s-80.164-35.891-80.164-80.165c0-44.273 35.89-80.164 80.164-80.164s80.164 35.891 80.164 80.164"
|
|
15
|
+
/>
|
|
16
|
+
<Path
|
|
17
|
+
fill="#5BCC5A"
|
|
18
|
+
d="M3.05 168.284c0-49.567 40.183-89.75 89.75-89.75h49.667v179.499H92.8c-49.567 0-89.75-40.182-89.75-89.749"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
fill="#5BCC5A"
|
|
22
|
+
d="m142.466 78.532 179.62-76.76c11.498-4.914 24.275 3.52 24.275 16.024v300.97c0 12.503-12.777 20.939-24.275 16.025l-179.62-76.761z"
|
|
23
|
+
/>
|
|
24
|
+
<Path
|
|
25
|
+
fill="#0DA84C"
|
|
26
|
+
d="M142.466 189.243v68.787l-49.666.003c-14.45 0-28.105-3.417-40.197-9.484 8.863-34.629 40.275-60.228 77.666-60.228a81 81 0 0 1 12.197.922M208.461 286.231l-65.995-28.201v-68.787c38.484 5.876 67.964 39.118 67.964 79.243 0 6.099-.679 12.036-1.969 17.745"
|
|
27
|
+
/>
|
|
28
|
+
</G>
|
|
29
|
+
<Defs>
|
|
30
|
+
<ClipPath id="NeetoEngage_svg__a">
|
|
31
|
+
<Path fill={props.color} d="M.35.35h348.3v348.3H.35z" />
|
|
32
|
+
</ClipPath>
|
|
33
|
+
</Defs>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
export default SvgNeetoEngage;
|
package/dist/logos/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export { default as NeetoCode } from "./NeetoCode";
|
|
|
8
8
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
9
9
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
10
10
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
11
|
+
export { default as NeetoEngage } from "./NeetoEngage";
|
|
11
12
|
export { default as NeetoForm } from "./NeetoForm";
|
|
12
13
|
export { default as NeetoGit } from "./NeetoGit";
|
|
13
14
|
export { default as NeetoInvisible } from "./NeetoInvisible";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Circle, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgNeetoEngage = (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(#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>
|
|
35
|
+
</Svg>
|
|
36
|
+
);
|
|
37
|
+
export default SvgNeetoEngage;
|
|
@@ -8,6 +8,7 @@ export { default as NeetoCode } from "./NeetoCode";
|
|
|
8
8
|
export { default as NeetoCourse } from "./NeetoCourse";
|
|
9
9
|
export { default as NeetoDeploy } from "./NeetoDeploy";
|
|
10
10
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
11
|
+
export { default as NeetoEngage } from "./NeetoEngage";
|
|
11
12
|
export { default as NeetoForm } from "./NeetoForm";
|
|
12
13
|
export { default as NeetoGit } from "./NeetoGit";
|
|
13
14
|
export { default as NeetoInvisible } from "./NeetoInvisible";
|