I have followed this expo-google-app-auth and using the authentication in the react native app.
const { type, accessToken, user } = await Google.logInAsync(config);
With this, I am taking accessToken and passing it to the node.js which has firebase integration
var credential = firebase.auth.GoogleAuthProvider.credential(id_token);
Everything works fine here, now my question is I want to use the GoogleSignIn Branding Button. For me, just the normal button is sufficient enough without any google library for adding button. Is there any styles alone to integrate it into the normal button?