import PropTypes from 'prop-types'; import React from 'react'; import GithubIcon from '../../../images/github.svg'; function GithubButton(props) { return ( {props.buttonText} ); } GithubButton.propTypes = { buttonText: PropTypes.string.isRequired }; export default GithubButton;