mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-04-12 04:51:21 +08:00
26 lines
716 B
TypeScript
26 lines
716 B
TypeScript
import * as React from "react";
|
|
import { IconProps } from "../../interfaces/Interfaces";
|
|
|
|
import { Svg, Path } from "react-native-svg";
|
|
|
|
export default function SignupIcon(props: IconProps) {
|
|
return (
|
|
<>
|
|
<Svg
|
|
width={props.size}
|
|
height={props.size}
|
|
viewBox="0 0 24 24"
|
|
strokeWidth="2"
|
|
stroke={props.color}
|
|
fill="none"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<Path stroke="none" d="M0 0h24v24H0z" fill="none"></Path>
|
|
<Path d="M9 7m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0"></Path>
|
|
<Path d="M3 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2"></Path>
|
|
<Path d="M16 11h6m-3 -3v6"></Path>
|
|
</Svg>
|
|
</>
|
|
);
|
|
}
|