clerk sign in and sign up login setup

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 16:08:12 +00:00
committed by GitHub
parent 640961eeec
commit a5cabfe1a1
7 changed files with 139 additions and 11 deletions
+6 -2
View File
@@ -4,7 +4,11 @@ import { icons } from "@/constants";
import { CustomButton } from "./custom-button";
export const OAuth = () => {
type OAuthProps = {
title: string;
};
export const OAuth = ({ title }: OAuthProps) => {
const handleGoogleSignIn = () => {};
return (
@@ -18,7 +22,7 @@ export const OAuth = () => {
</View>
<CustomButton
title="Log in with Google"
title={title}
className="mt-5 w-full shadow-none"
iconLeft={() => (
<Image