// @flow import * as React from 'react'; import styled from 'styled-components'; import { signin } from '../../../shared/utils/routeHelpers'; import Flex from '../../../shared/components/Flex'; import GoogleLogo from '../../../shared/components/GoogleLogo'; import SlackLogo from '../../../shared/components/SlackLogo'; type Props = { lastSignedIn: string, googleSigninEnabled: boolean, slackSigninEnabled: boolean, }; const SigninButtons = ({ lastSignedIn, slackSigninEnabled, googleSigninEnabled, }: Props) => { return ( {slackSigninEnabled && ( {lastSignedIn === 'slack' && 'You signed in with Slack previously'} )}   {googleSigninEnabled && ( {lastSignedIn === 'google' && 'You signed in with Google previously'} )} ); }; const Spacer = styled.span` padding-left: 10px; `; const Button = styled.a` display: inline-flex; align-items: center; padding: 10px 20px; color: ${props => props.theme.white}; background: ${props => props.theme.black}; border-radius: 4px; font-weight: 600; height: 56px; `; const LastLogin = styled.p` font-size: 12px; color: ${props => props.theme.slate}; padding-top: 4px; `; export default SigninButtons;