23 lines
489 B
JavaScript
23 lines
489 B
JavaScript
import InlineSVG from 'react-inlinesvg';
|
|
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
|
|
import googleUrl from '../../../images/google.svg';
|
|
|
|
function GoogleButton(props) {
|
|
return (
|
|
<a
|
|
className="google-button"
|
|
href="/auth/google/"
|
|
>
|
|
<InlineSVG src={googleUrl} className="google-icon" />
|
|
<span>{props.buttonText}</span>
|
|
</a>
|
|
);
|
|
}
|
|
|
|
GoogleButton.propTypes = {
|
|
buttonText: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default GoogleButton;
|