| // @flow | |
| import * as React from 'react'; | |
| import type { ButtonProps } from './'; | |
| import { GoogleButton, Label, A } from './style'; | |
| import Icon from 'src/components/icon'; | |
| export const GoogleSigninButton = (props: ButtonProps) => { | |
| const { href, preferred, showAfter, onClickHandler } = props; | |
| return ( | |
| <A onClick={() => onClickHandler && onClickHandler('google')} href={href}> | |
| <GoogleButton showAfter={showAfter} preferred={preferred}> | |
| <Icon glyph={'google'} /> | |
| <Label>Log in with Google</Label> | |
| </GoogleButton> | |
| </A> | |
| ); | |
| }; | |