@bigbinary/neeto-icons-rn 1.20.55 → 1.20.56
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/Changelog.js +42 -0
- package/dist/icons/Roadmap.js +42 -0
- package/dist/icons/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
const SvgChangelog = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<G clipPath="url(#clip0_2819_17550)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M18 8C18.7956 8 19.5587 8.31607 20.1213 8.87868C20.6839 9.44129 21 10.2044 21 11C21 11.7956 20.6839 12.5587 20.1213 13.1213C19.5587 13.6839 18.7956 14 18 14"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M10 8V19C10 19.2652 9.89464 19.5196 9.70711 19.7071C9.51957 19.8946 9.26522 20 9 20H8C7.73478 20 7.48043 19.8946 7.29289 19.7071C7.10536 19.5196 7 19.2652 7 19V14"
|
|
22
|
+
stroke="#344054"
|
|
23
|
+
strokeWidth={1.2}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M12 7.99995L16.524 4.22995C16.6555 4.12046 16.8154 4.0507 16.9851 4.02885C17.1548 4.00701 17.3271 4.03398 17.482 4.1066C17.6369 4.17922 17.7679 4.29449 17.8597 4.4389C17.9514 4.5833 18.0001 4.75087 18 4.92195V17.0779C18.0001 17.249 17.9514 17.4166 17.8597 17.561C17.7679 17.7054 17.6369 17.8207 17.482 17.8933C17.3271 17.9659 17.1548 17.9929 16.9851 17.971C16.8154 17.9492 16.6555 17.8794 16.524 17.7699L12 13.9999H4C3.73478 13.9999 3.48043 13.8946 3.29289 13.7071C3.10536 13.5195 3 13.2652 3 12.9999V8.99995C3 8.73473 3.10536 8.48038 3.29289 8.29284C3.48043 8.1053 3.73478 7.99995 4 7.99995H12Z"
|
|
29
|
+
stroke="#344054"
|
|
30
|
+
strokeWidth={1.2}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
</G>
|
|
35
|
+
<Defs>
|
|
36
|
+
<ClipPath id="clip0_2819_17550">
|
|
37
|
+
<Rect width={24} height={24} fill="white" />
|
|
38
|
+
</ClipPath>
|
|
39
|
+
</Defs>
|
|
40
|
+
</Svg>
|
|
41
|
+
);
|
|
42
|
+
export default SvgChangelog;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
const SvgRoadmap = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<G clipPath="url(#clip0_2819_17544)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M3 7L9 4L15 7L21 4V17L15 20L9 17L3 20V7Z"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M9 4V17"
|
|
22
|
+
stroke="#344054"
|
|
23
|
+
strokeWidth={1.2}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M15 7V20"
|
|
29
|
+
stroke="#344054"
|
|
30
|
+
strokeWidth={1.2}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
</G>
|
|
35
|
+
<Defs>
|
|
36
|
+
<ClipPath id="clip0_2819_17544">
|
|
37
|
+
<Rect width={24} height={24} fill="white" />
|
|
38
|
+
</ClipPath>
|
|
39
|
+
</Defs>
|
|
40
|
+
</Svg>
|
|
41
|
+
);
|
|
42
|
+
export default SvgRoadmap;
|
package/dist/icons/index.js
CHANGED
|
@@ -50,6 +50,7 @@ export { default as CategoriesSettings } from "./CategoriesSettings";
|
|
|
50
50
|
export { default as Category } from "./Category";
|
|
51
51
|
export { default as CenterAlign } from "./CenterAlign";
|
|
52
52
|
export { default as Certificate } from "./Certificate";
|
|
53
|
+
export { default as Changelog } from "./Changelog";
|
|
53
54
|
export { default as ChatOffline } from "./ChatOffline";
|
|
54
55
|
export { default as Chat } from "./Chat";
|
|
55
56
|
export { default as ChatBubble } from "./ChatBubble";
|
|
@@ -288,6 +289,7 @@ export { default as Ribbon } from "./Ribbon";
|
|
|
288
289
|
export { default as Right } from "./Right";
|
|
289
290
|
export { default as RightAlign } from "./RightAlign";
|
|
290
291
|
export { default as RightArrow } from "./RightArrow";
|
|
292
|
+
export { default as Roadmap } from "./Roadmap";
|
|
291
293
|
export { default as Robot } from "./Robot";
|
|
292
294
|
export { default as RoutingForms } from "./RoutingForms";
|
|
293
295
|
export { default as Scale } from "./Scale";
|