Files
formbricks/packages/ui/SignupOptions/components/GoogleButton.tsx
Dhruwang Jariwala ab80bc1bf2 feat: language switch (#2692)
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
2024-06-12 14:10:22 +00:00

33 lines
685 B
TypeScript

"use client";
import { signIn } from "next-auth/react";
import { Button } from "../../Button";
import { GoogleIcon } from "../../icons";
export const GoogleButton = ({
text = "Continue with Google",
inviteUrl,
}: {
text?: string;
inviteUrl?: string | null;
}) => {
const handleLogin = async () => {
await signIn("google", {
redirect: true,
callbackUrl: inviteUrl ? inviteUrl : "/", // redirect after login to /
});
};
return (
<Button
type="button"
EndIcon={GoogleIcon}
startIconClassName="ml-3"
onClick={handleLogin}
variant="secondary"
className="w-full justify-center">
{text}
</Button>
);
};