Repository URL to install this package:
|
Version:
0.0.2 ▾
|
import * as React from 'react';
import { GOOGLE_ACCOUNT_ID } from 'src/bootstrap/api/config';
import { StyledGoogleSocialLoginButton } from './styled';
class GoogleSignIn extends React.Component {
render() {
return React.createElement(StyledGoogleSocialLoginButton, { google: true });
}
}
GoogleSignIn.defaultProps = {
socialId: GOOGLE_ACCOUNT_ID,
className: 'google-login',
scope: 'profile',
fetchBasicProfile: false,
};
export { GoogleSignIn };
export default GoogleSignIn;
//# sourceMappingURL=GoogleSignInButton.js.map