// @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 ( onClickHandler && onClickHandler('google')} href={href}> ); };