Added initial login logic

This commit is contained in:
Keannu Christian Bernasol 2023-03-06 00:56:21 +08:00
parent 54c416ad74
commit 1f668be499
7 changed files with 135 additions and 9 deletions

View file

@ -0,0 +1,24 @@
import React from "react";
export interface props {
size: number;
color: string;
}
export default function LoginIcon(props: props) {
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="M14 8v-2a2 2 0 0 0 -2 -2h-7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2 -2v-2"></path>
<path d="M20 12h-13l3 -3m0 6l-3 -3"></path>
</svg>
);
}