@bigbinary/neeto-icons-rn 1.18.9 → 1.18.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/NeetoPublish.js +20 -0
- package/dist/appIcons/index.js +1 -0
- package/dist/icons/Certificate.js +29 -0
- package/dist/icons/Moon.js +27 -0
- package/dist/icons/Sun.js +27 -0
- package/dist/icons/index.js +3 -0
- package/dist/logos/NeetoPublish.js +26 -0
- package/dist/logos/index.js +1 -0
- package/dist/typefaceLogos/NeetoPublish.js +27 -0
- package/dist/typefaceLogos/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Rect, Path } from "react-native-svg";
|
|
3
|
+
const SvgNeetoPublish = (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
|
+
<Path
|
|
13
|
+
fill="#5BCC5A"
|
|
14
|
+
d="M264.824 571.919v-345.44h154.775c63.181 0 114.4 51.218 114.4 114.399s-51.219 114.399-114.4 114.399h-38.133v116.642z"
|
|
15
|
+
/>
|
|
16
|
+
<Path fill="#75DC66" d="M264.944 339.123h116.761v233.52H264.944z" />
|
|
17
|
+
<Path fill="#0DA84C" d="M264.825 338.634h116.642l-.001 116.643z" />
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgNeetoPublish;
|
package/dist/appIcons/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as NeetoInvoice } from "./NeetoInvoice";
|
|
|
15
15
|
export { default as NeetoKb } from "./NeetoKb";
|
|
16
16
|
export { default as NeetoPlanner } from "./NeetoPlanner";
|
|
17
17
|
export { default as NeetoPlaydash } from "./NeetoPlaydash";
|
|
18
|
+
export { default as NeetoPublish } from "./NeetoPublish";
|
|
18
19
|
export { default as NeetoQuiz } from "./NeetoQuiz";
|
|
19
20
|
export { default as NeetoRecord } from "./NeetoRecord";
|
|
20
21
|
export { default as NeetoReplay } from "./NeetoReplay";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Circle, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgCertificate = (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 stroke={props.color} clipPath="url(#Certificate_svg__a)">
|
|
12
|
+
<Circle cx={11.791} cy={9.75} r={6.75} strokeWidth={1.5} />
|
|
13
|
+
<Path
|
|
14
|
+
strokeWidth={1.151}
|
|
15
|
+
d="m6.69 14-3.136 4.914c-.036.056.014.122.082.109l2.885-.587.855 2.593c.02.06.108.068.143.012l3.136-4.913M16.965 14l3.136 4.914c.036.056-.014.122-.082.109l-2.885-.587-.855 2.593c-.02.06-.108.068-.143.012L13 16.128"
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
strokeWidth={1.5}
|
|
19
|
+
d="M11.863 6.268a.153.153 0 0 1 .274 0l1.027 2.012a.15.15 0 0 0 .112.082l2.232.355c.123.02.172.17.084.26l-1.597 1.598a.15.15 0 0 0-.043.132l.352 2.232a.153.153 0 0 1-.22.16l-2.014-1.024a.15.15 0 0 0-.14 0L9.918 13.1a.153.153 0 0 1-.221-.16l.352-2.233a.15.15 0 0 0-.043-.132L8.408 8.977a.153.153 0 0 1 .085-.26l2.23-.355a.15.15 0 0 0 .113-.082z"
|
|
20
|
+
/>
|
|
21
|
+
</G>
|
|
22
|
+
<Defs>
|
|
23
|
+
<ClipPath id="Certificate_svg__a">
|
|
24
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
25
|
+
</ClipPath>
|
|
26
|
+
</Defs>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgCertificate;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgMoon = (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(#Moon_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
stroke={props.color}
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
d="M11.797 4.007h.34a6.73 6.73 0 0 0-2.022 4.035 6.8 6.8 0 0 0 .963 4.428 6.52 6.52 0 0 0 3.503 2.77A6.35 6.35 0 0 0 19 15.07a8 8 0 0 1-2.562 3.36 7.7 7.7 0 0 1-3.881 1.532 7.63 7.63 0 0 1-4.097-.732 7.86 7.86 0 0 1-3.148-2.789 8.17 8.17 0 0 1-.391-8.213 7.9 7.9 0 0 1 2.868-3.09A7.65 7.65 0 0 1 11.797 4z"
|
|
18
|
+
/>
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Moon_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgMoon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgSun = (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(#Sun_svg__a)"
|
|
17
|
+
>
|
|
18
|
+
<Path d="M14.779 14.877A4 4 0 1 0 9.22 9.122a4 4 0 0 0 5.559 5.755M7.474 16.526l-1.13 1.13M7.474 7.474l-1.13-1.13M16.526 7.474l1.13-1.13M16.526 16.526l1.13 1.13M5.6 12H4M12 5.6V4M18.4 12H20M12 18.4V20" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="Sun_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M0 0h24v24H0z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgSun;
|
package/dist/icons/index.js
CHANGED
|
@@ -19,6 +19,7 @@ export { default as CannedResponses } from "./CannedResponses";
|
|
|
19
19
|
export { default as Captcha } from "./Captcha";
|
|
20
20
|
export { default as Category } from "./Category";
|
|
21
21
|
export { default as CenterAlign } from "./CenterAlign";
|
|
22
|
+
export { default as Certificate } from "./Certificate";
|
|
22
23
|
export { default as ChatOffline } from "./ChatOffline";
|
|
23
24
|
export { default as Chat } from "./Chat";
|
|
24
25
|
export { default as ChatBubble } from "./ChatBubble";
|
|
@@ -130,6 +131,7 @@ export { default as MessageSquare } from "./MessageSquare";
|
|
|
130
131
|
export { default as Mic } from "./Mic";
|
|
131
132
|
export { default as Minus } from "./Minus";
|
|
132
133
|
export { default as Mobile } from "./Mobile";
|
|
134
|
+
export { default as Moon } from "./Moon";
|
|
133
135
|
export { default as Movie } from "./Movie";
|
|
134
136
|
export { default as MultipleChoice } from "./MultipleChoice";
|
|
135
137
|
export { default as NewChat } from "./NewChat";
|
|
@@ -175,6 +177,7 @@ export { default as Smiley } from "./Smiley";
|
|
|
175
177
|
export { default as Status } from "./Status";
|
|
176
178
|
export { default as Subdomain } from "./Subdomain";
|
|
177
179
|
export { default as Suitcase } from "./Suitcase";
|
|
180
|
+
export { default as Sun } from "./Sun";
|
|
178
181
|
export { default as Swap } from "./Swap";
|
|
179
182
|
export { default as Tablet } from "./Tablet";
|
|
180
183
|
export { default as Tag } from "./Tag";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgNeetoPublish = (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(#NeetoPublish_svg__a)">
|
|
12
|
+
<Path
|
|
13
|
+
fill="#5BCC5A"
|
|
14
|
+
d="M44.716 367.087V2.883h163.182c66.613 0 120.613 54 120.613 120.613 0 66.612-54 120.613-120.613 120.613h-40.204v122.978z"
|
|
15
|
+
/>
|
|
16
|
+
<Path fill="#75DC66" d="M44.842 121.646h123.103V367.85H44.842z" />
|
|
17
|
+
<Path fill="#0DA84C" d="M44.717 121.131h122.978l-.001 122.978z" />
|
|
18
|
+
</G>
|
|
19
|
+
<Defs>
|
|
20
|
+
<ClipPath id="NeetoPublish_svg__a">
|
|
21
|
+
<Path fill={props.color} d="M.64.64h371.52v371.52H.64z" />
|
|
22
|
+
</ClipPath>
|
|
23
|
+
</Defs>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgNeetoPublish;
|
package/dist/logos/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as NeetoInvoice } from "./NeetoInvoice";
|
|
|
15
15
|
export { default as NeetoKb } from "./NeetoKb";
|
|
16
16
|
export { default as NeetoPlanner } from "./NeetoPlanner";
|
|
17
17
|
export { default as NeetoPlaydash } from "./NeetoPlaydash";
|
|
18
|
+
export { default as NeetoPublish } from "./NeetoPublish";
|
|
18
19
|
export { default as NeetoQuiz } from "./NeetoQuiz";
|
|
19
20
|
export { default as NeetoRecord } from "./NeetoRecord";
|
|
20
21
|
export { default as NeetoReplay } from "./NeetoReplay";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath } from "react-native-svg";
|
|
3
|
+
const SvgNeetoPublish = (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="#5BCC5A"
|
|
13
|
+
d="M22.5 135.3V8.441h56.84c23.202 0 42.011 18.81 42.011 42.012s-18.809 42.012-42.012 42.012H65.335V135.3z"
|
|
14
|
+
/>
|
|
15
|
+
<Path fill="#75DC66" d="M22.544 49.809h42.879v85.757H22.544z" />
|
|
16
|
+
<Path fill="#0DA84C" d="M22.5 49.63h42.836v42.835z" />
|
|
17
|
+
<G fill="#000" clipPath="url(#neetoPublish_svg__a)">
|
|
18
|
+
<Path d="M231.463 79.86q0 6.459-3.114 12.109-2.998 5.65-9.571 9.109-6.458 3.46-16.374 3.46h-13.491v30.903h-16.144V54.953h29.635q9.34 0 15.913 3.229t9.802 8.88q3.344 5.649 3.344 12.799m-29.751 11.647q6.689 0 9.917-2.998 3.23-3.113 3.229-8.648 0-11.762-13.146-11.762h-12.799v23.408zm99.215-19.949v63.883h-16.259v-8.071q-3.114 4.15-8.187 6.572-4.959 2.307-10.84 2.307-7.495 0-13.261-3.114-5.765-3.228-9.109-9.34-3.23-6.227-3.229-14.76V71.558h16.144v35.171q0 7.61 3.805 11.761 3.805 4.036 10.378 4.036 6.688 0 10.494-4.036 3.805-4.151 3.805-11.761v-35.17zm29.766 9.34q3.113-4.611 8.533-7.495 5.535-2.883 12.569-2.883 8.187 0 14.76 4.036 6.689 4.036 10.493 11.532 3.921 7.38 3.921 17.181 0 9.803-3.921 17.412-3.804 7.495-10.493 11.647-6.573 4.15-14.76 4.151-7.15 0-12.569-2.767-5.304-2.883-8.533-7.38v9.109h-16.144v-85.33h16.144zm33.786 22.371q0-5.766-2.421-9.917-2.307-4.266-6.227-6.457-3.805-2.19-8.303-2.191-4.381 0-8.302 2.306-3.806 2.19-6.227 6.458-2.306 4.266-2.306 10.032t2.306 10.032q2.421 4.266 6.227 6.573 3.92 2.19 8.302 2.191 4.498 0 8.303-2.306 3.92-2.307 6.227-6.573 2.421-4.267 2.421-10.148m42.059-53.159v85.331h-16.144v-85.33zm21.831 13.838q-4.267 0-7.15-2.653-2.767-2.767-2.767-6.803t2.767-6.688q2.883-2.768 7.15-2.768 4.266 0 7.034 2.768 2.883 2.652 2.883 6.688t-2.883 6.804q-2.768 2.652-7.034 2.652m7.956 7.61v63.883h-16.143V71.558zm38.09 64.921q-7.84 0-14.068-2.767-6.227-2.883-9.917-7.726-3.575-4.844-3.92-10.724h16.259q.46 3.69 3.575 6.111 3.228 2.422 7.956 2.422 4.612 0 7.15-1.845 2.652-1.845 2.652-4.728 0-3.114-3.229-4.612-3.114-1.615-10.032-3.46-7.15-1.73-11.762-3.575-4.497-1.845-7.841-5.65-3.23-3.805-3.229-10.263 0-5.304 2.998-9.686 3.114-4.381 8.764-6.919 5.766-2.536 13.491-2.537 11.416 0 18.22 5.766 6.803 5.651 7.495 15.337h-15.452q-.346-3.806-3.229-5.997-2.767-2.306-7.495-2.306-4.382 0-6.803 1.615-2.307 1.614-2.307 4.497 0 3.228 3.229 4.958 3.23 1.614 10.032 3.344 6.92 1.73 11.416 3.575 4.498 1.845 7.726 5.766 3.345 3.805 3.46 10.147 0 5.535-3.114 9.917-2.998 4.381-8.764 6.919-5.65 2.421-13.261 2.421m72.062-65.843q7.264 0 12.915 3.229 5.65 3.113 8.764 9.34 3.228 6.111 3.228 14.76v37.476h-16.143v-35.285q0-7.61-3.806-11.647-3.805-4.15-10.378-4.151-6.688 0-10.609 4.151-3.805 4.035-3.805 11.647v35.285h-16.144v-85.33h16.144v29.404q3.114-4.151 8.303-6.458 5.189-2.421 11.531-2.421M229.746 25.377q0 1.294-.172 2.331h-17.471q.216 2.59 1.812 4.058t3.925 1.468q3.364 0 4.788-2.892h6.514q-1.035 3.454-3.968 5.698-2.934 2.202-7.204 2.202-3.452 0-6.212-1.51-2.718-1.555-4.271-4.361-1.51-2.807-1.51-6.476 0-3.712 1.51-6.52 1.51-2.805 4.228-4.316t6.255-1.511q3.408 0 6.082 1.467a10.1 10.1 0 0 1 4.184 4.188q1.51 2.677 1.51 6.174m-6.255-1.727q-.043-2.331-1.682-3.713-1.64-1.425-4.012-1.425-2.243 0-3.796 1.382-1.51 1.338-1.855 3.756zM256.37 25.377q0 1.294-.173 2.331h-17.47q.215 2.59 1.812 4.058t3.925 1.468q3.364 0 4.788-2.892h6.514q-1.035 3.454-3.969 5.698-2.933 2.202-7.204 2.202-3.45 0-6.211-1.51-2.718-1.555-4.271-4.361-1.51-2.807-1.51-6.476 0-3.712 1.51-6.52 1.51-2.805 4.228-4.316t6.254-1.511q3.408 0 6.083 1.467a10.1 10.1 0 0 1 4.184 4.188q1.51 2.677 1.51 6.174m-6.255-1.727q-.044-2.331-1.682-3.713-1.64-1.425-4.012-1.425-2.244 0-3.796 1.382-1.51 1.338-1.855 3.756zM267.909 18.855v11.674c0 .806.213 1.338.587 1.712q.604.519 1.984.518h2.804v5.095h-3.796c-5.09 0-7.526-2.604-7.526-7.554V18.855h-3.202v-5.036h3.202V7.867h5.947v5.952h5.375v5.036zM288.114 38.242q-3.451 0-6.212-1.51-2.76-1.555-4.357-4.361-1.553-2.807-1.553-6.476t1.596-6.476q1.64-2.806 4.444-4.317 2.804-1.554 6.254-1.554 3.452 0 6.255 1.554 2.805 1.51 4.4 4.317 1.64 2.806 1.64 6.476t-1.683 6.476a11.47 11.47 0 0 1-4.486 4.36q-2.804 1.512-6.298 1.511m0-5.267q1.64 0 3.063-.777 1.466-.82 2.329-2.418t.863-3.885q0-3.41-1.812-5.224-1.768-1.857-4.357-1.856-2.588 0-4.357 1.856-1.725 1.813-1.725 5.224t1.682 5.267q1.725 1.813 4.314 1.813M200.877 7.867h-11.594l11.594 17.39zM172.125 38.242V7.867h8.372l20.38 30.375h-8.617l-13.411-19.709v19.71z" />
|
|
19
|
+
</G>
|
|
20
|
+
<Defs>
|
|
21
|
+
<ClipPath id="neetoPublish_svg__a">
|
|
22
|
+
<Path fill={props.color} d="M163.687 0h415.125v153H163.687z" />
|
|
23
|
+
</ClipPath>
|
|
24
|
+
</Defs>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgNeetoPublish;
|
|
@@ -15,6 +15,7 @@ export { default as NeetoInvoice } from "./NeetoInvoice";
|
|
|
15
15
|
export { default as NeetoKb } from "./NeetoKb";
|
|
16
16
|
export { default as NeetoPlanner } from "./NeetoPlanner";
|
|
17
17
|
export { default as NeetoPlaydash } from "./NeetoPlaydash";
|
|
18
|
+
export { default as NeetoPublish } from "./NeetoPublish";
|
|
18
19
|
export { default as NeetoQuiz } from "./NeetoQuiz";
|
|
19
20
|
export { default as NeetoRecord } from "./NeetoRecord";
|
|
20
21
|
export { default as NeetoReplay } from "./NeetoReplay";
|