File size: 580 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// @flow
import * as React from 'react';
import type { ButtonProps } from './';
import { FacebookButton, Label, A } from './style';
import Icon from 'src/components/icon';

export const FacebookSigninButton = (props: ButtonProps) => {
  const { href, preferred, showAfter, onClickHandler } = props;

  return (
    <A onClick={() => onClickHandler && onClickHandler('facebook')} href={href}>
      <FacebookButton showAfter={showAfter} preferred={preferred}>
        <Icon glyph={'facebook'} />
        <Label>Log in with Facebook</Label>
      </FacebookButton>
    </A>
  );
};