2016-08-31 19:12:18 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
|
2017-03-02 20:18:58 +00:00
|
|
|
const githubUrl = require('../../../images/github.svg');
|
|
|
|
|
2016-08-31 19:12:18 +00:00
|
|
|
function GithubButton(props) {
|
|
|
|
return (
|
|
|
|
<a
|
|
|
|
className="github-button"
|
|
|
|
href="/auth/github"
|
|
|
|
>
|
|
|
|
<InlineSVG src={githubUrl} className="github-icon" />
|
|
|
|
<span>{props.buttonText}</span>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
GithubButton.propTypes = {
|
|
|
|
buttonText: PropTypes.string.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default GithubButton;
|