p5.js-web-editor/client/modules/User/components/GoogleButton.jsx

24 lines
489 B
React
Raw Normal View History

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;