@bigbinary/neeto-icons-rn 1.20.44 → 1.20.45
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/TextCross.js +6 -7
- package/package.json +1 -1
package/dist/icons/TextCross.js
CHANGED
|
@@ -6,15 +6,14 @@ const SvgTextCross = (props) => (
|
|
|
6
6
|
width={props.size}
|
|
7
7
|
height={props.size}
|
|
8
8
|
fill="none"
|
|
9
|
+
stroke={props.color}
|
|
10
|
+
strokeLinecap="round"
|
|
11
|
+
strokeLinejoin="round"
|
|
12
|
+
strokeWidth={1.5}
|
|
9
13
|
{...props}
|
|
10
14
|
>
|
|
11
|
-
<Path
|
|
12
|
-
|
|
13
|
-
strokeLinecap="round"
|
|
14
|
-
strokeLinejoin="round"
|
|
15
|
-
strokeWidth={1.5}
|
|
16
|
-
d="M8 18h6a3 3 0 0 0 3-3v0M19 12H5M16 6h-5a3 3 0 0 0-3 3"
|
|
17
|
-
/>
|
|
15
|
+
<Path stroke="none" d="M0 0h24v24H0z" />
|
|
16
|
+
<Path d="M5 12h14M16 6.5A4 2 0 0 0 12 5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1-4-1.5" />
|
|
18
17
|
</Svg>
|
|
19
18
|
);
|
|
20
19
|
export default SvgTextCross;
|