eyeSVG & center login

This commit is contained in:
2025-10-03 10:23:17 +02:00
parent 8846ca05ff
commit e5709b47eb
8 changed files with 110 additions and 51 deletions
+27
View File
@@ -0,0 +1,27 @@
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;