Social Login

Only want the social login buttons and don't need the full login form?

Use the <SocialLogins /> component:

social-logins.tsx

import { SocialLogins } from "gatsby-theme-firebase";

...

<SocialLogins
  onSuccess={(user) => {
    doSomethingWith(user)
  }}
/>

Demo