@bigbinary/neeto-icons-rn 1.20.68 → 1.20.70
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/Highlight.js +30 -37
- package/package.json +1 -1
package/dist/icons/Highlight.js
CHANGED
|
@@ -1,49 +1,42 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import Svg, {
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
3
|
const SvgHighlight = (props) => (
|
|
4
4
|
<Svg
|
|
5
5
|
fill="none"
|
|
6
6
|
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
-
viewBox="0 0
|
|
7
|
+
viewBox="0 0 20 17"
|
|
8
8
|
width={props.size}
|
|
9
9
|
height={props.size}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
/>
|
|
41
|
-
</G>
|
|
42
|
-
<Defs>
|
|
43
|
-
<ClipPath id="clip0_149_431">
|
|
44
|
-
<Rect width={24} height={24} fill="white" />
|
|
45
|
-
</ClipPath>
|
|
46
|
-
</Defs>
|
|
12
|
+
<Path
|
|
13
|
+
d="M0.600006 15.9284H4.60001L15.1 5.4284C15.6304 4.89797 15.9284 4.17855 15.9284 3.4284C15.9284 2.67826 15.6304 1.95884 15.1 1.4284C14.5696 0.89797 13.8502 0.599976 13.1 0.599976C12.3499 0.599976 11.6304 0.89797 11.1 1.4284L0.600006 11.9284V15.9284Z"
|
|
14
|
+
stroke="#0C111D"
|
|
15
|
+
strokeWidth={1.2}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
d="M10.1 2.42834L14.1 6.42834"
|
|
21
|
+
stroke="#0C111D"
|
|
22
|
+
strokeWidth={1.2}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M2.10001 10.4283L6.10001 14.4283"
|
|
28
|
+
stroke="#0C111D"
|
|
29
|
+
strokeWidth={1.2}
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
<Path
|
|
34
|
+
d="M18.6 11.9283V15.9283H10.6L14.6 11.9283H18.6Z"
|
|
35
|
+
stroke="#0C111D"
|
|
36
|
+
strokeWidth={1.2}
|
|
37
|
+
strokeLinecap="round"
|
|
38
|
+
strokeLinejoin="round"
|
|
39
|
+
/>
|
|
47
40
|
</Svg>
|
|
48
41
|
);
|
|
49
42
|
export default SvgHighlight;
|