import React from 'react'
import { Button } from 'rsuite';
import { IconGoogle } from '@/components/providerIcons';


interface Props {
  onClick: () => void
}

const SignWithGoogleButton: React.FC<Props> = ({onClick}) => {
  return (
    <Button
      style={{width: '100%'}}
      onClick={onClick}
      startIcon={<IconGoogle />}
    >
      <strong style={{margin: 'auto'}}>Sign In With Google</strong>
    </Button>
  )
}

export default SignWithGoogleButton