@bigbinary/neeto-icons-rn 1.18.2 → 1.18.4

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.
@@ -0,0 +1,91 @@
1
+ import * as React from "react";
2
+ import Svg, {
3
+ Path,
4
+ Mask,
5
+ Rect,
6
+ G,
7
+ Defs,
8
+ LinearGradient,
9
+ Stop,
10
+ } from "react-native-svg";
11
+ const SvgNeetoPlaydash = (props) => (
12
+ <Svg
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ width={props.size}
15
+ height={props.size}
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ <Path
20
+ fill="url(#NeetoPlaydash_svg__a)"
21
+ d="M0 92.11C0 41.239 41.24 0 92.11 0h157.78C300.761 0 342 41.24 342 92.11v157.78c0 50.871-41.239 92.11-92.11 92.11H92.11C41.239 342 0 300.761 0 249.89z"
22
+ />
23
+ <Mask
24
+ id="NeetoPlaydash_svg__c"
25
+ width={342}
26
+ height={342}
27
+ x={0}
28
+ y={0}
29
+ maskUnits="userSpaceOnUse"
30
+ style={{
31
+ maskType: "alpha",
32
+ }}
33
+ >
34
+ <Rect
35
+ width={342}
36
+ height={342}
37
+ fill="url(#NeetoPlaydash_svg__b)"
38
+ rx={92.11}
39
+ />
40
+ </Mask>
41
+ <G mask="url(#NeetoPlaydash_svg__c)">
42
+ <Path
43
+ fill="url(#NeetoPlaydash_svg__d)"
44
+ d="M319.936 191.227c0-87.333-70.797-158.13-158.129-158.13H3.677v316.259h316.259z"
45
+ />
46
+ </G>
47
+ <Path
48
+ fill={props.color}
49
+ d="M216 168c0-25.853-18.51-47.382-43-52.058v-23.29c37.248 4.896 66 36.764 66 75.348 0 41.974-34.026 76-76 76-39.272 0-71.586-29.787-75.584-68H110.6c3.857 25.475 25.848 45 52.4 45 29.271 0 53-23.729 53-53M161.655 92.012Q162.326 92 163 92v.046q-.675-.023-1.345-.034"
50
+ />
51
+ <Path
52
+ fill={props.color}
53
+ d="M205.972 204.289c4.402-4.578 11.682-4.72 16.26-.317l38.201 36.738c4.578 4.402 4.72 11.682.317 16.26s-11.682 4.72-16.26.317l-38.201-36.738c-4.578-4.402-4.72-11.682-.317-16.26M163 77c-49.153 0-89 39.847-89 89h89z"
54
+ />
55
+ <Defs>
56
+ <LinearGradient
57
+ id="NeetoPlaydash_svg__a"
58
+ x1={-24.156}
59
+ x2={377}
60
+ y1={-32.656}
61
+ y2={387}
62
+ gradientUnits="userSpaceOnUse"
63
+ >
64
+ <Stop offset={0.16} stopColor="#83D6AE" />
65
+ <Stop offset={1} stopColor="#20C7BD" />
66
+ </LinearGradient>
67
+ <LinearGradient
68
+ id="NeetoPlaydash_svg__b"
69
+ x1={-23.954}
70
+ x2={318.389}
71
+ y1={-19.463}
72
+ y2={522.498}
73
+ gradientUnits="userSpaceOnUse"
74
+ >
75
+ <Stop offset={1} stopColor="#FFD55C" />
76
+ </LinearGradient>
77
+ <LinearGradient
78
+ id="NeetoPlaydash_svg__d"
79
+ x1={275.728}
80
+ x2={3.678}
81
+ y1={82.407}
82
+ y2={349.356}
83
+ gradientUnits="userSpaceOnUse"
84
+ >
85
+ <Stop stopColor={props.color} stopOpacity={0.16} />
86
+ <Stop offset={0.531} stopColor={props.color} stopOpacity={0} />
87
+ </LinearGradient>
88
+ </Defs>
89
+ </Svg>
90
+ );
91
+ export default SvgNeetoPlaydash;
@@ -9,7 +9,7 @@ import Svg, {
9
9
  Stop,
10
10
  } from "react-native-svg";
11
11
  /* SVGR has dropped some elements not supported by react-native-svg: filter */
12
- const SvgNeetoSeoAudit = (props) => (
12
+ const SvgNeetoSeo = (props) => (
13
13
  <Svg
14
14
  xmlns="http://www.w3.org/2000/svg"
15
15
  width={props.size}
@@ -18,11 +18,11 @@ const SvgNeetoSeoAudit = (props) => (
18
18
  {...props}
19
19
  >
20
20
  <Path
21
- fill="url(#neetoSEOAudit_svg__a)"
21
+ fill="url(#neetoSEO_svg__a)"
22
22
  d="M0 92.11C0 41.239 41.24 0 92.11 0h157.78C300.761 0 342 41.24 342 92.11v157.78c0 50.871-41.239 92.11-92.11 92.11H92.11C41.239 342 0 300.761 0 249.89z"
23
23
  />
24
24
  <Mask
25
- id="neetoSEOAudit_svg__c"
25
+ id="neetoSEO_svg__c"
26
26
  width={342}
27
27
  height={342}
28
28
  x={0}
@@ -32,20 +32,15 @@ const SvgNeetoSeoAudit = (props) => (
32
32
  maskType: "alpha",
33
33
  }}
34
34
  >
35
- <Rect
36
- width={342}
37
- height={342}
38
- fill="url(#neetoSEOAudit_svg__b)"
39
- rx={92.11}
40
- />
35
+ <Rect width={342} height={342} fill="url(#neetoSEO_svg__b)" rx={92.11} />
41
36
  </Mask>
42
- <G mask="url(#neetoSEOAudit_svg__c)">
37
+ <G mask="url(#neetoSEO_svg__c)">
43
38
  <Path
44
- fill="url(#neetoSEOAudit_svg__d)"
39
+ fill="url(#neetoSEO_svg__d)"
45
40
  d="M319.936 191.227c0-87.333-70.797-158.13-158.129-158.13H3.677v316.259h316.259z"
46
41
  />
47
42
  </G>
48
- <G fill={props.color} filter="url(#neetoSEOAudit_svg__e)">
43
+ <G fill={props.color} filter="url(#neetoSEO_svg__e)">
49
44
  <Path d="M226.335 111.566C211.2 89.486 185.792 75 157 75c-46.392 0-84 37.608-84 84 0 6.749.796 13.313 2.3 19.601l42.775-42.776c4.101-4.1 10.749-4.1 14.85 0l34.575 34.576z" />
50
45
  <Path d="m236.319 131.28-61.394 61.395c-4.101 4.1-10.749 4.1-14.85 0L125.5 158.099l-41.856 41.857C98.014 225.638 125.479 243 157 243c46.392 0 84-37.608 84-84a83.9 83.9 0 0 0-4.681-27.72" />
51
46
  <Path
@@ -56,7 +51,7 @@ const SvgNeetoSeoAudit = (props) => (
56
51
  </G>
57
52
  <Defs>
58
53
  <LinearGradient
59
- id="neetoSEOAudit_svg__a"
54
+ id="neetoSEO_svg__a"
60
55
  x1={-135.74}
61
56
  x2={464.109}
62
57
  y1={-186.642}
@@ -67,7 +62,7 @@ const SvgNeetoSeoAudit = (props) => (
67
62
  <Stop offset={0.799} stopColor="#8588FF" />
68
63
  </LinearGradient>
69
64
  <LinearGradient
70
- id="neetoSEOAudit_svg__b"
65
+ id="neetoSEO_svg__b"
71
66
  x1={-23.954}
72
67
  x2={318.389}
73
68
  y1={-19.463}
@@ -77,7 +72,7 @@ const SvgNeetoSeoAudit = (props) => (
77
72
  <Stop offset={1} stopColor="#FFD55C" />
78
73
  </LinearGradient>
79
74
  <LinearGradient
80
- id="neetoSEOAudit_svg__d"
75
+ id="neetoSEO_svg__d"
81
76
  x1={275.728}
82
77
  x2={3.678}
83
78
  y1={82.407}
@@ -90,4 +85,4 @@ const SvgNeetoSeoAudit = (props) => (
90
85
  </Defs>
91
86
  </Svg>
92
87
  );
93
- export default SvgNeetoSeoAudit;
88
+ export default SvgNeetoSeo;
@@ -16,6 +16,7 @@ export { default as NeetoInvoice } from "./NeetoInvoice";
16
16
  export { default as NeetoKb } from "./NeetoKb";
17
17
  export { default as NeetoMonitor } from "./NeetoMonitor";
18
18
  export { default as NeetoPlanner } from "./NeetoPlanner";
19
+ export { default as NeetoPlaydash } from "./NeetoPlaydash";
19
20
  export { default as NeetoPopups } from "./NeetoPopups";
20
21
  export { default as NeetoQuiz } from "./NeetoQuiz";
21
22
  export { default as NeetoRecord } from "./NeetoRecord";
@@ -28,4 +29,4 @@ export { default as NeetoSocial } from "./NeetoSocial";
28
29
  export { default as NeetoStore } from "./NeetoStore";
29
30
  export { default as NeetoTestify } from "./NeetoTestify";
30
31
  export { default as NeetoWireframe } from "./NeetoWireframe";
31
- export { default as NeetoSeoAudit } from "./NeetoSeoAudit";
32
+ export { default as NeetoSeo } from "./NeetoSeo";
@@ -0,0 +1,38 @@
1
+ import * as React from "react";
2
+ import Svg, { Path, Defs, LinearGradient, Stop } from "react-native-svg";
3
+ const SvgNeetoPlaydash = (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="url(#NeetoPlaydash_svg__a)"
13
+ d="M140 70c0-38.66-31.34-70-70-70H0v140h140z"
14
+ />
15
+ <Path
16
+ fill={props.color}
17
+ d="M88.133 68.794c0-10.717-7.672-19.642-17.824-21.58v-9.655c15.44 2.03 27.36 15.24 27.36 31.235 0 17.4-14.106 31.506-31.507 31.506-16.28 0-29.676-12.348-31.333-28.19h9.61c1.6 10.56 10.716 18.655 21.723 18.655 12.134 0 21.971-9.837 21.971-21.971M44.206 67.965h-9.539zM66.164 37.288v.019q-.278-.01-.554-.014.277-.005.554-.005"
18
+ />
19
+ <Path
20
+ fill={props.color}
21
+ d="M83.98 83.838a4.767 4.767 0 0 1 6.742-.132l15.836 15.23a4.768 4.768 0 0 1-6.61 6.872l-15.836-15.23a4.767 4.767 0 0 1-.131-6.74M66.176 31.07c-20.376 0-36.895 16.519-36.895 36.895h36.895z"
22
+ />
23
+ <Defs>
24
+ <LinearGradient
25
+ id="NeetoPlaydash_svg__a"
26
+ x1={140}
27
+ x2={17.5}
28
+ y1={140}
29
+ y2={-11}
30
+ gradientUnits="userSpaceOnUse"
31
+ >
32
+ <Stop stopColor="#35CABA" />
33
+ <Stop offset={1} stopColor="#83D6AE" />
34
+ </LinearGradient>
35
+ </Defs>
36
+ </Svg>
37
+ );
38
+ export default SvgNeetoPlaydash;
@@ -1,7 +1,7 @@
1
1
  import * as React from "react";
2
2
  import Svg, { Path, G, Defs, LinearGradient, Stop } from "react-native-svg";
3
3
  /* SVGR has dropped some elements not supported by react-native-svg: filter */
4
- const SvgNeetoSeoAudit = (props) => (
4
+ const SvgNeetoSeo = (props) => (
5
5
  <Svg
6
6
  xmlns="http://www.w3.org/2000/svg"
7
7
  width={props.size}
@@ -10,17 +10,17 @@ const SvgNeetoSeoAudit = (props) => (
10
10
  {...props}
11
11
  >
12
12
  <Path
13
- fill="url(#NeetoSEOAudit_svg__a)"
13
+ fill="url(#NeetoSEO_svg__a)"
14
14
  d="M140 70c0-38.66-31.34-70-70-70H0v140h140z"
15
15
  />
16
- <G fill={props.color} filter="url(#NeetoSEOAudit_svg__b)">
16
+ <G fill={props.color} filter="url(#NeetoSEO_svg__b)">
17
17
  <Path d="M93.371 50.59C86.92 41.174 76.087 35 63.811 35 44.034 35 28 51.033 28 70.812c0 2.877.34 5.675.98 8.356l18.237-18.236a4.476 4.476 0 0 1 6.33 0l14.741 14.74z" />
18
18
  <Path d="M97.628 58.994 71.454 85.168a4.476 4.476 0 0 1-6.331 0l-14.74-14.74-17.845 17.844c6.126 10.95 17.835 18.352 31.274 18.352 19.778 0 35.812-16.034 35.812-35.812 0-4.141-.703-8.118-1.996-11.818" />
19
19
  <Path d="M87.92 102.373a39.9 39.9 0 0 0 9.545-10.338q.042.036.082.075l13.455 13.114a4.263 4.263 0 0 1 .078 6.028l-3.869 3.969a4.26 4.26 0 0 1-6.028.078z" />
20
20
  </G>
21
21
  <Defs>
22
22
  <LinearGradient
23
- id="NeetoSEOAudit_svg__a"
23
+ id="NeetoSEO_svg__a"
24
24
  x1={140}
25
25
  x2={17.5}
26
26
  y1={206.5}
@@ -33,4 +33,4 @@ const SvgNeetoSeoAudit = (props) => (
33
33
  </Defs>
34
34
  </Svg>
35
35
  );
36
- export default SvgNeetoSeoAudit;
36
+ export default SvgNeetoSeo;
@@ -15,13 +15,14 @@ export { default as NeetoInvisible } from "./NeetoInvisible";
15
15
  export { default as NeetoInvoice } from "./NeetoInvoice";
16
16
  export { default as NeetoKb } from "./NeetoKb";
17
17
  export { default as NeetoPlanner } from "./NeetoPlanner";
18
+ export { default as NeetoPlaydash } from "./NeetoPlaydash";
18
19
  export { default as NeetoPopups } from "./NeetoPopups";
19
20
  export { default as NeetoQuiz } from "./NeetoQuiz";
20
21
  export { default as NeetoRecord } from "./NeetoRecord";
21
22
  export { default as NeetoReplay } from "./NeetoReplay";
22
23
  export { default as NeetoReview } from "./NeetoReview";
23
24
  export { default as NeetoRunner } from "./NeetoRunner";
24
- export { default as NeetoSeoAudit } from "./NeetoSeoAudit";
25
+ export { default as NeetoSeo } from "./NeetoSeo";
25
26
  export { default as NeetoSign } from "./NeetoSign";
26
27
  export { default as NeetoSite } from "./NeetoSite";
27
28
  export { default as NeetoSocial } from "./NeetoSocial";
@@ -0,0 +1,48 @@
1
+ import * as React from "react";
2
+ import Svg, { Path, Defs, LinearGradient, Stop } from "react-native-svg";
3
+ const SvgNeetoPlaydash = (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="url(#neetoPlaydash_svg__a)"
13
+ d="M56 32C56 18.745 45.255 8 32 8H8v48h48z"
14
+ />
15
+ <Path
16
+ fill={props.color}
17
+ d="M38.217 31.586a7.535 7.535 0 0 0-6.111-7.399v-3.31c5.294.696 9.38 5.226 9.38 10.71 0 5.965-4.836 10.802-10.802 10.802-5.582 0-10.175-4.234-10.743-9.666h3.295a7.535 7.535 0 0 0 14.98-1.137M23.156 31.302h-3.27zM30.685 20.785v.006l-.19-.005z"
18
+ />
19
+ <Path
20
+ fill={props.color}
21
+ d="M36.793 36.744c.626-.65 1.66-.67 2.311-.045l5.43 5.222a1.634 1.634 0 1 1-2.266 2.356l-5.43-5.221a1.634 1.634 0 0 1-.045-2.312M30.689 18.653c-6.986 0-12.65 5.663-12.65 12.65h12.65z"
22
+ />
23
+ <Path
24
+ fill="#11243E"
25
+ fillRule="evenodd"
26
+ d="M98.087 20H81.24l8.336 8.198h8.511c5.365 0 9.708 4.251 9.708 9.489v17.686h8.38V37.687c0-9.77-8.101-17.687-18.088-17.687m-9.708 9.392L80 21.152v34.221h8.38zm64.603 20.198-5.318-5.504-.318.3c-1.845 1.743-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.581-2.886-3.093-4.968h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.607-3.071-3.645-7.679-5.78-13.513-5.78-10.303 0-18.348 7.59-18.348 17.689 0 5.073 1.903 9.502 5.295 12.662 3.391 3.159 8.242 5.022 14.096 5.022 6.836 0 11.264-2.332 14.463-5.485zm38.825 0-5.317-5.504-.319.3c-1.845 1.743-4.938 3.425-9.211 3.425-3.005 0-5.321-.748-6.995-2.044-1.547-1.196-2.58-2.886-3.093-4.968h26.899l.02-.412c.283-5.872-1.216-10.97-4.28-14.607-3.071-3.645-7.679-5.78-13.512-5.78-10.304 0-18.349 7.59-18.349 17.689 0 5.073 1.903 9.502 5.295 12.662 3.391 3.159 8.242 5.022 14.096 5.022 6.836 0 11.264-2.332 14.463-5.485zm10.586-29.292h-5.918v7.554h5.918v13.192c0 5.327.796 8.958 3.05 11.235 2.258 2.28 5.868 3.094 11.179 3.094h1.553v-7.746h-.44c-1.597 0-2.825-.06-3.774-.237-.946-.176-1.574-.462-2.011-.882-.436-.42-.73-1.02-.912-1.923-.182-.908-.244-2.081-.244-3.61V27.852h7.381v-7.554h-7.381v-8.925h-8.401zm-65.138 7.188c2.706 0 4.691.797 6.085 2.097 1.292 1.204 2.113 2.873 2.506 4.836h-17.803c.514-2.15 1.56-3.828 3.022-4.992 1.577-1.256 3.673-1.941 6.19-1.941m38.826 0c2.705 0 4.69.797 6.084 2.097 1.292 1.204 2.113 2.873 2.507 4.836h-17.804c.514-2.15 1.56-3.828 3.022-4.992 1.577-1.256 3.673-1.941 6.191-1.941m62.798.016c5.59 0 10.034 4.57 10.034 10.185s-4.444 10.185-10.034 10.185c-5.588 0-9.966-4.566-9.966-10.185s4.378-10.185 9.966-10.185m0-7.502c-10.033 0-18.054 7.756-18.054 17.687 0 9.864 8.02 17.686 18.054 17.686 10.031 0 18.121-7.82 18.121-17.686C257 27.754 248.909 20 238.879 20"
27
+ clipRule="evenodd"
28
+ />
29
+ <Path
30
+ fill="#11243E"
31
+ d="M295.221 24.168q0 3.51-1.692 6.58-1.63 3.07-5.201 4.95-3.51 1.88-8.899 1.88h-7.332v16.795h-8.773V10.632h16.105q5.076 0 8.648 1.755t5.327 4.825q1.817 3.07 1.817 6.956m-16.168 6.33q3.635 0 5.39-1.63 1.754-1.692 1.754-4.7 0-6.392-7.144-6.392h-6.956v12.721zM309.557 8v46.373h-8.773V8zM315.302 36.89q0-5.264 2.068-9.338 2.132-4.073 5.703-6.267 3.635-2.193 8.084-2.193 3.885 0 6.768 1.567 2.945 1.566 4.7 3.948v-4.951h8.836v34.717h-8.836v-5.076q-1.692 2.444-4.7 4.074-2.945 1.566-6.831 1.566-4.386 0-8.021-2.256-3.571-2.255-5.703-6.329-2.067-4.136-2.068-9.463m27.323.125q0-3.196-1.253-5.452-1.254-2.319-3.384-3.51a8.9 8.9 0 0 0-4.575-1.253 8.9 8.9 0 0 0-4.512 1.19q-2.069 1.191-3.384 3.51-1.254 2.255-1.253 5.39 0 3.132 1.253 5.514 1.315 2.319 3.384 3.572 2.13 1.254 4.512 1.253a9.23 9.23 0 0 0 4.575-1.19q2.13-1.254 3.384-3.51 1.253-2.318 1.253-5.514M392.576 19.656l-21.494 51.136h-9.338l7.52-17.296-13.912-33.84h9.839l8.961 24.252 9.087-24.252zM394.383 36.89q0-5.264 2.068-9.338 2.131-4.073 5.765-6.267t8.084-2.193q3.384 0 6.455 1.504 3.071 1.44 4.888 3.885V8h8.899v46.373h-8.899v-5.138q-1.629 2.569-4.575 4.136-2.945 1.566-6.83 1.566-4.387 0-8.022-2.256-3.634-2.255-5.765-6.329-2.068-4.136-2.068-9.463m27.323.125q0-3.196-1.254-5.452-1.252-2.319-3.384-3.51a8.87 8.87 0 0 0-4.574-1.253q-2.445 0-4.512 1.19-2.068 1.191-3.384 3.51-1.254 2.255-1.254 5.39 0 3.132 1.254 5.514 1.316 2.319 3.384 3.572 2.13 1.254 4.512 1.253a9.2 9.2 0 0 0 4.574-1.19q2.131-1.254 3.384-3.51 1.254-2.318 1.254-5.514M436.188 36.89q0-5.264 2.068-9.338 2.13-4.073 5.702-6.267 3.635-2.193 8.084-2.193 3.887 0 6.768 1.567 2.946 1.566 4.7 3.948v-4.951h8.836v34.717h-8.836v-5.076q-1.692 2.444-4.7 4.074-2.945 1.566-6.83 1.566-4.387 0-8.022-2.256-3.572-2.255-5.702-6.329-2.068-4.136-2.068-9.463m27.322.125q0-3.196-1.253-5.452-1.252-2.319-3.384-3.51a8.87 8.87 0 0 0-4.575-1.253 8.9 8.9 0 0 0-4.512 1.19q-2.067 1.191-3.384 3.51-1.253 2.255-1.253 5.39 0 3.132 1.253 5.514 1.317 2.319 3.384 3.572 2.132 1.254 4.512 1.253 2.445 0 4.575-1.19 2.131-1.254 3.384-3.51 1.253-2.318 1.253-5.514M493.534 54.937q-4.261 0-7.646-1.504-3.384-1.566-5.389-4.198-1.942-2.633-2.131-5.828h8.836q.252 2.006 1.943 3.321 1.755 1.316 4.324 1.316 2.507 0 3.885-1.003 1.442-1.002 1.442-2.569 0-1.692-1.755-2.507-1.692-.877-5.452-1.88-3.885-.94-6.392-1.942-2.444-1.003-4.261-3.071-1.755-2.068-1.755-5.577a9.1 9.1 0 0 1 1.629-5.264q1.692-2.382 4.763-3.76 3.134-1.38 7.332-1.379 6.204 0 9.901 3.133 3.697 3.071 4.074 8.335h-8.398q-.188-2.068-1.754-3.259-1.505-1.253-4.074-1.253-2.381 0-3.697.877-1.253.878-1.253 2.444 0 1.755 1.754 2.695 1.755.877 5.452 1.817 3.76.94 6.204 1.943 2.444 1.002 4.199 3.133 1.817 2.068 1.88 5.515 0 3.008-1.692 5.39-1.63 2.38-4.763 3.76-3.07 1.315-7.206 1.315M533.282 19.155q3.948 0 7.019 1.754 3.07 1.692 4.763 5.076 1.754 3.322 1.754 8.022v20.366h-8.773V35.197q0-4.136-2.068-6.329-2.068-2.256-5.64-2.256-3.635 0-5.765 2.256-2.068 2.193-2.068 6.33v19.175h-8.774V8h8.774v15.98q1.692-2.256 4.512-3.51 2.82-1.315 6.266-1.315"
32
+ />
33
+ <Defs>
34
+ <LinearGradient
35
+ id="neetoPlaydash_svg__a"
36
+ x1={56}
37
+ x2={14}
38
+ y1={56}
39
+ y2={4.229}
40
+ gradientUnits="userSpaceOnUse"
41
+ >
42
+ <Stop stopColor="#35CABA" />
43
+ <Stop offset={1} stopColor="#83D6AE" />
44
+ </LinearGradient>
45
+ </Defs>
46
+ </Svg>
47
+ );
48
+ export default SvgNeetoPlaydash;
@@ -1,7 +1,7 @@
1
1
  import * as React from "react";
2
2
  import Svg, { Path, G, Defs, LinearGradient, Stop } from "react-native-svg";
3
3
  /* SVGR has dropped some elements not supported by react-native-svg: filter */
4
- const SvgNeetoSeoAudit = (props) => (
4
+ const SvgNeetoSeo = (props) => (
5
5
  <Svg
6
6
  xmlns="http://www.w3.org/2000/svg"
7
7
  width={props.size}
@@ -10,10 +10,10 @@ const SvgNeetoSeoAudit = (props) => (
10
10
  {...props}
11
11
  >
12
12
  <Path
13
- fill="url(#neetoSEOAudit_svg__a)"
13
+ fill="url(#neetoSEO_svg__a)"
14
14
  d="M56 32C56 18.745 45.255 8 32 8H8v48h48z"
15
15
  />
16
- <G fill={props.color} filter="url(#neetoSEOAudit_svg__b)">
16
+ <G fill={props.color} filter="url(#neetoSEO_svg__b)">
17
17
  <Path d="M40.013 25.345A12.27 12.27 0 0 0 29.878 20C23.097 20 17.6 25.497 17.6 32.278c0 .987.116 1.946.336 2.866l6.252-6.253c.6-.6 1.571-.6 2.17 0l5.055 5.054z" />
18
18
  <Path d="M41.472 28.227 32.498 37.2c-.6.599-1.571.599-2.17 0l-5.054-5.054-6.119 6.118a12.28 12.28 0 0 0 10.723 6.292c6.781 0 12.278-5.498 12.278-12.279 0-1.42-.24-2.783-.684-4.051" />
19
19
  <Path d="M38.144 43.1a13.7 13.7 0 0 0 3.272-3.545q.015.012.028.026l4.613 4.496c.579.563.59 1.489.027 2.067l-1.326 1.36a1.46 1.46 0 0 1-2.067.027z" />
@@ -26,11 +26,11 @@ const SvgNeetoSeoAudit = (props) => (
26
26
  />
27
27
  <Path
28
28
  fill="#11243E"
29
- d="M278.427 55.439q-4.575 0-8.272-1.567-3.635-1.566-5.766-4.512-2.13-2.945-2.193-6.956h9.4q.188 2.694 1.88 4.261 1.755 1.567 4.763 1.567 3.07 0 4.825-1.441 1.755-1.504 1.755-3.886 0-1.942-1.191-3.196-1.19-1.253-3.008-1.942-1.755-.753-4.888-1.63-4.262-1.253-6.956-2.444-2.632-1.253-4.575-3.697-1.88-2.506-1.88-6.643 0-3.885 1.943-6.768 1.942-2.882 5.452-4.386 3.51-1.567 8.021-1.567 6.768 0 10.967 3.321 4.262 3.26 4.7 9.15h-9.651q-.125-2.256-1.942-3.698-1.755-1.503-4.7-1.504-2.57 0-4.136 1.316-1.504 1.317-1.504 3.823 0 1.755 1.128 2.945 1.19 1.128 2.882 1.88 1.755.69 4.888 1.63 4.262 1.252 6.956 2.506 2.695 1.255 4.638 3.76 1.942 2.507 1.942 6.58 0 3.51-1.817 6.518t-5.327 4.825q-3.508 1.755-8.334 1.755m31.191-37.099v10.967h14.727v6.956h-14.727v11.593h16.607V55h-25.38V11.196h25.38v7.144zm44.217 37.099q-6.141 0-11.28-2.883t-8.147-7.959Q331.4 39.46 331.4 33.004q0-6.392 3.008-11.468 3.009-5.14 8.147-8.021 5.139-2.883 11.28-2.883 6.204 0 11.28 2.883 5.138 2.882 8.084 8.021 3.008 5.076 3.008 11.468 0 6.455-3.008 11.593-2.946 5.076-8.084 7.959-5.139 2.883-11.28 2.883m0-7.834q3.948 0 6.956-1.754 3.008-1.818 4.7-5.139t1.692-7.708q0-4.386-1.692-7.645-1.692-3.322-4.7-5.076-3.008-1.755-6.956-1.755t-7.019 1.755q-3.008 1.754-4.7 5.076-1.692 3.258-1.692 7.645t1.692 7.708 4.7 5.139q3.07 1.754 7.019 1.754m55.054-.94h-17.422L388.585 55h-9.212l15.729-43.804h10.215L421.046 55h-9.275zm-2.382-7.018-6.329-18.299-6.329 18.299zm52.527-19.364V55h-8.836v-4.387q-1.692 2.256-4.45 3.572-2.695 1.254-5.89 1.254-4.074 0-7.207-1.692-3.133-1.755-4.951-5.076-1.755-3.384-1.754-8.022V20.283h8.773v19.113q0 4.136 2.068 6.392 2.069 2.193 5.64 2.193 3.635 0 5.703-2.193 2.067-2.256 2.068-6.392V20.283zm5.733 17.233q0-5.265 2.068-9.337 2.13-4.074 5.766-6.267 3.634-2.193 8.084-2.193 3.384 0 6.454 1.504 3.071 1.44 4.888 3.885V8.627h8.899V55h-8.899v-5.139q-1.63 2.57-4.574 4.136-2.946 1.567-6.831 1.567-4.387 0-8.021-2.256t-5.766-6.33q-2.067-4.135-2.068-9.462m27.323.125q0-3.196-1.253-5.452-1.254-2.318-3.384-3.509a8.9 8.9 0 0 0-4.575-1.253 8.9 8.9 0 0 0-4.512 1.19q-2.069 1.191-3.384 3.51-1.253 2.256-1.253 5.389t1.253 5.515q1.316 2.318 3.384 3.572 2.13 1.253 4.512 1.253a9.23 9.23 0 0 0 4.575-1.19q2.13-1.254 3.384-3.51 1.253-2.319 1.253-5.515m21.187-21.494q-2.319 0-3.885-1.442-1.504-1.504-1.504-3.697t1.504-3.635q1.566-1.503 3.885-1.504 2.319 0 3.823 1.504 1.567 1.442 1.567 3.635 0 2.194-1.567 3.697-1.504 1.442-3.823 1.442m4.324 4.136V55h-8.773V20.283zm18.216 7.206v16.795q0 1.755.815 2.57.878.75 2.883.751h4.073V55h-5.515q-11.091 0-11.092-10.779V27.49h-4.136v-7.206h4.136v-8.586h8.836v8.586h7.771v7.206z"
29
+ d="M278.426 55.439q-4.575 0-8.272-1.567-3.635-1.566-5.765-4.512t-2.194-6.956h9.4q.188 2.694 1.88 4.261 1.755 1.567 4.763 1.567 3.071 0 4.825-1.441 1.755-1.504 1.755-3.886 0-1.942-1.191-3.196-1.19-1.253-3.008-1.942-1.754-.753-4.888-1.63-4.261-1.253-6.956-2.444-2.631-1.253-4.574-3.697-1.88-2.506-1.88-6.643 0-3.885 1.942-6.768 1.943-2.882 5.452-4.386 3.51-1.567 8.022-1.567 6.768 0 10.966 3.321 4.262 3.26 4.7 9.15h-9.65q-.125-2.256-1.943-3.698-1.755-1.503-4.7-1.504-2.57 0-4.136 1.316-1.504 1.317-1.504 3.823 0 1.755 1.128 2.945 1.191 1.128 2.883 1.88 1.754.69 4.888 1.63 4.261 1.252 6.956 2.506 2.694 1.255 4.637 3.76 1.943 2.507 1.943 6.58 0 3.51-1.818 6.518-1.817 3.007-5.326 4.825-3.51 1.755-8.335 1.755M309.617 18.34v10.967h14.727v6.956h-14.727v11.593h16.607V55h-25.38V11.196h25.38v7.144zM353.834 55.439q-6.141 0-11.28-2.883t-8.146-7.959q-3.009-5.138-3.008-11.593 0-6.392 3.008-11.468 3.008-5.14 8.146-8.021 5.139-2.883 11.28-2.883 6.204 0 11.28 2.883 5.14 2.882 8.084 8.021 3.009 5.076 3.008 11.468 0 6.455-3.008 11.593-2.945 5.076-8.084 7.959t-11.28 2.883m0-7.834q3.948 0 6.956-1.754 3.008-1.818 4.7-5.139t1.692-7.708q0-4.386-1.692-7.645-1.692-3.322-4.7-5.076-3.008-1.755-6.956-1.755t-7.018 1.755q-3.008 1.754-4.7 5.076-1.692 3.258-1.692 7.645t1.692 7.708 4.7 5.139q3.07 1.754 7.018 1.754"
30
30
  />
31
31
  <Defs>
32
32
  <LinearGradient
33
- id="neetoSEOAudit_svg__a"
33
+ id="neetoSEO_svg__a"
34
34
  x1={56}
35
35
  x2={14}
36
36
  y1={78.8}
@@ -43,4 +43,4 @@ const SvgNeetoSeoAudit = (props) => (
43
43
  </Defs>
44
44
  </Svg>
45
45
  );
46
- export default SvgNeetoSeoAudit;
46
+ export default SvgNeetoSeo;
@@ -14,11 +14,12 @@ export { default as NeetoInvoice } from "./NeetoInvoice";
14
14
  export { default as NeetoKb } from "./NeetoKb";
15
15
  export { default as NeetoMonitor } from "./NeetoMonitor";
16
16
  export { default as NeetoPlanner } from "./NeetoPlanner";
17
+ export { default as NeetoPlaydash } from "./NeetoPlaydash";
17
18
  export { default as NeetoQuiz } from "./NeetoQuiz";
18
19
  export { default as NeetoRecord } from "./NeetoRecord";
19
20
  export { default as NeetoReplay } from "./NeetoReplay";
20
21
  export { default as NeetoRunner } from "./NeetoRunner";
21
- export { default as NeetoSeoAudit } from "./NeetoSeoAudit";
22
+ export { default as NeetoSeo } from "./NeetoSeo";
22
23
  export { default as NeetoSign } from "./NeetoSign";
23
24
  export { default as NeetoSite } from "./NeetoSite";
24
25
  export { default as NeetoSocial } from "./NeetoSocial";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons-rn",
3
- "version": "1.18.2",
3
+ "version": "1.18.4",
4
4
  "main": "./dist/icons/index.js",
5
5
  "author": "sangameshsomawar",
6
6
  "license": "MIT",