@bigbinary/neeto-icons-rn 1.20.8 → 1.20.10
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/Bulb.js +20 -0
- package/dist/icons/NeetoEngage.js +27 -0
- package/dist/icons/index.js +2 -0
- package/dist/logos/NeetoEngage.js +36 -0
- package/dist/logos/index.js +1 -0
- package/dist/typefaceLogos/NeetoEngage.js +33 -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,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
const SvgBulb = (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="M3 12h1m8-9v1m8 8h1M5.6 5.6l.7.7m12.1-.7-.7.7M9 16a5 5 0 1 1 6 0 3.5 3.5 0 0 0-1 3 2 2 0 0 1-4 0 3.5 3.5 0 0 0-1-3M9.7 17h4.6"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgBulb;
|
|
@@ -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
|
@@ -12,6 +12,7 @@ export { default as Bank } from "./Bank";
|
|
|
12
12
|
export { default as Book } from "./Book";
|
|
13
13
|
export { default as BookOpen } from "./BookOpen";
|
|
14
14
|
export { default as Braces } from "./Braces";
|
|
15
|
+
export { default as Bulb } from "./Bulb";
|
|
15
16
|
export { default as Css3 } from "./Css3";
|
|
16
17
|
export { default as Calendar } from "./Calendar";
|
|
17
18
|
export { default as Camera } from "./Camera";
|
|
@@ -256,6 +257,7 @@ export { default as NeetoCal } from "./NeetoCal";
|
|
|
256
257
|
export { default as NeetoChangelog } from "./NeetoChangelog";
|
|
257
258
|
export { default as NeetoChat } from "./NeetoChat";
|
|
258
259
|
export { default as NeetoDesk } from "./NeetoDesk";
|
|
260
|
+
export { default as NeetoEngage } from "./NeetoEngage";
|
|
259
261
|
export { default as NeetoForm } from "./NeetoForm";
|
|
260
262
|
export { default as NeetoIcon } from "./NeetoIcon";
|
|
261
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,33 @@
|
|
|
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
|
+
fill="#75DC66"
|
|
13
|
+
d="M84.654 104.455c0 15.791-12.801 28.592-28.592 28.592s-28.593-12.801-28.593-28.592 12.802-28.592 28.593-28.592c15.79 0 28.592 12.801 28.592 28.592"
|
|
14
|
+
/>
|
|
15
|
+
<Path
|
|
16
|
+
fill="#5BCC5A"
|
|
17
|
+
d="M10.688 68.716c0-17.68 14.331-32.011 32.01-32.011h17.715v64.022H42.7c-17.68 0-32.011-14.332-32.011-32.011M60.413 36.704l64.066-27.379c4.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"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
fill="#0DA84C"
|
|
21
|
+
d="M60.413 76.191v24.535l-17.714.001a31.9 31.9 0 0 1-14.337-3.383c3.16-12.351 14.364-21.482 27.7-21.482 1.48 0 2.933.113 4.351.33"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
fill="#0DA84C"
|
|
25
|
+
d="m83.952 110.784-23.54-10.058.001-24.535c13.726 2.096 24.241 13.952 24.241 28.264 0 2.175-.242 4.293-.702 6.329"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
fill="#000"
|
|
29
|
+
d="M168.848 95.077q0-11.877 5.305-21.217 5.42-9.455 14.645-14.645 9.34-5.304 20.871-5.304 13.491 0 23.639 6.919t14.184 19.141h-18.566q-2.767-5.765-7.841-8.648-4.959-2.883-11.531-2.883-7.034 0-12.569 3.344-5.42 3.23-8.533 9.225-2.999 5.997-2.999 14.068 0 7.957 2.999 14.068 3.113 5.997 8.533 9.341 5.535 3.228 12.569 3.229 6.572 0 11.531-2.883 5.074-2.998 7.841-8.764h18.566q-4.036 12.339-14.184 19.257-10.032 6.804-23.639 6.804-11.531 0-20.871-5.189-9.225-5.305-14.645-14.645-5.304-9.34-5.305-21.218M294.952 70.631q7.264 0 12.915 3.229 5.65 3.114 8.763 9.34 3.23 6.113 3.229 14.76v37.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.144V50.106h16.144V79.51q3.114-4.151 8.302-6.457 5.19-2.422 11.532-2.422M328.754 103.265q0-9.687 3.805-17.182 3.92-7.495 10.493-11.531 6.688-4.035 14.876-4.036 7.149 0 12.453 2.883 5.42 2.882 8.649 7.264v-9.11h16.259v63.884H379.03v-9.341q-3.114 4.498-8.649 7.496-5.419 2.883-12.569 2.883-8.071 0-14.76-4.152-6.572-4.15-10.493-11.646-3.805-7.611-3.805-17.412m50.276.23q0-5.88-2.306-10.032-2.307-4.267-6.227-6.457-3.921-2.307-8.418-2.307t-8.303 2.191-6.227 6.458q-2.306 4.15-2.306 9.917 0 5.765 2.306 10.147 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.457 2.306-4.267 2.306-10.148M444.151 70.631q11.415 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.806-4.15-10.378-4.15-6.688 0-10.609 4.15-3.805 4.036-3.805 11.647v35.286H408.75V71.554h16.144v7.956q3.228-4.151 8.187-6.457 5.073-2.422 11.07-2.422M507.703 70.516q7.15 0 12.569 2.883 5.42 2.767 8.533 7.264v-9.11h16.259v64.345q0 8.879-3.574 15.798-3.575 7.033-10.724 11.07-7.15 4.15-17.297 4.151-13.607 0-22.371-6.342-8.648-6.342-9.801-17.297h16.028q1.268 4.381 5.42 6.919 4.266 2.652 10.263 2.652 7.033 0 11.416-4.267 4.381-4.15 4.381-12.684v-9.917q-3.113 4.498-8.648 7.495-5.42 2.999-12.454 2.999-8.072 0-14.76-4.152-6.688-4.15-10.609-11.646-3.805-7.611-3.805-17.412 0-9.687 3.805-17.182 3.921-7.495 10.494-11.531 6.688-4.035 14.875-4.036m21.102 32.979q0-5.88-2.306-10.032-2.306-4.267-6.227-6.457-3.92-2.307-8.418-2.307t-8.302 2.191q-3.806 2.19-6.227 6.458-2.306 4.15-2.306 9.917 0 5.765 2.306 10.147 2.421 4.266 6.227 6.573 3.92 2.306 8.302 2.306 4.498 0 8.418-2.191 3.921-2.306 6.227-6.457 2.307-4.267 2.306-10.148M617.911 102.111q0 3.46-.461 6.227h-46.701q.576 6.92 4.843 10.84 4.266 3.92 10.493 3.92 8.994 0 12.8-7.726h17.412q-2.767 9.225-10.609 15.222-7.84 5.88-19.257 5.881-9.225 0-16.605-4.036-7.264-4.152-11.416-11.647-4.036-7.495-4.036-17.297 0-9.917 4.036-17.412 4.037-7.495 11.301-11.531 7.264-4.035 16.72-4.036 9.11 0 16.259 3.92 7.265 3.921 11.185 11.186 4.036 7.15 4.036 16.489m-16.72-4.612q-.116-6.227-4.497-9.917-4.382-3.805-10.724-3.805-5.997 0-10.148 3.69-4.035 3.575-4.958 10.032zM643.532 50.106v85.331h-16.143V50.106zM685.543 136.475q-9.225 0-16.605-4.036-7.38-4.152-11.646-11.647-4.152-7.495-4.152-17.297t4.267-17.297q4.382-7.495 11.877-11.531 7.495-4.15 16.72-4.151t16.721 4.151q7.494 4.035 11.762 11.531 4.381 7.496 4.381 17.297t-4.497 17.297q-4.382 7.495-11.992 11.647-7.495 4.035-16.836 4.036m0-14.069q4.381 0 8.187-2.075 3.921-2.191 6.227-6.458 2.307-4.266 2.306-10.378 0-9.11-4.843-13.953-4.728-4.958-11.646-4.958-6.92 0-11.647 4.958-4.612 4.844-4.612 13.953 0 9.11 4.497 14.068 4.613 4.843 11.531 4.843M753.427 70.516q7.15 0 12.569 2.883 5.42 2.767 8.533 7.264v-9.11h16.259v64.345q0 8.879-3.574 15.798-3.575 7.033-10.725 11.07-7.149 4.15-17.296 4.151-13.608 0-22.371-6.342-8.649-6.342-9.802-17.297h16.029q1.268 4.381 5.42 6.919 4.266 2.652 10.262 2.652 7.035 0 11.416-4.267 4.383-4.15 4.382-12.684v-9.917q-3.113 4.498-8.648 7.495-5.42 2.999-12.454 2.999-8.072 0-14.76-4.152-6.688-4.15-10.609-11.646-3.805-7.611-3.805-17.412 0-9.687 3.805-17.182 3.921-7.495 10.494-11.531 6.687-4.035 14.875-4.036m21.102 32.979q0-5.88-2.306-10.032-2.307-4.267-6.227-6.457-3.921-2.307-8.418-2.307t-8.302 2.191-6.227 6.458q-2.307 4.15-2.306 9.917 0 5.765 2.306 10.147 2.421 4.266 6.227 6.573 3.92 2.306 8.302 2.306 4.497 0 8.418-2.191 3.92-2.306 6.227-6.457 2.306-4.267 2.306-10.148M229.622 25.51q0 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.245 25.51q0 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.785 18.987v11.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.987h-3.202v-5.035h3.202V8h5.947v5.951h5.375v5.036zM287.989 38.375q-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.752 8h-11.593l11.593 17.39zM172 38.375V8h8.372l20.38 30.375h-8.616l-13.412-19.709v19.709z"
|
|
30
|
+
/>
|
|
31
|
+
</Svg>
|
|
32
|
+
);
|
|
33
|
+
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";
|