28 lines
670 B
JavaScript
28 lines
670 B
JavaScript
import * as React from "react";
|
|
import Svg, { Path } from "react-native-svg";
|
|
|
|
function EyeSlashSVG(props) {
|
|
return (
|
|
<Svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props?.size ?? 24}
|
|
height={props?.size ?? 24}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="white"
|
|
strokeWidth={2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
aria-hidden="true"
|
|
{...props}
|
|
>
|
|
<Path d="M3 3l18 18" />
|
|
<Path d="M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z" />
|
|
<Path d="M12 9a3 3 0 013 3" />
|
|
<Path d="M9.88 9.88A3 3 0 0012 15a3 3 0 002.12-.88" />
|
|
</Svg>
|
|
);
|
|
}
|
|
|
|
export default EyeSlashSVG;
|