// @flow import * as React from 'react'; import type { ButtonProps } from './'; import { GithubButton, Label, A } from './style'; import Icon from 'src/components/icon'; export const GithubSigninButton = (props: ButtonProps) => { const { href, preferred, showAfter, onClickHandler, githubOnly } = props; return ( onClickHandler && onClickHandler('github')} href={href} > ); };