Last active
June 22, 2018 09:05
-
-
Save diegohaz/abb88b22cca882b356d210d92bb19097 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Avatar = ({ className, ...props }) => ( | |
<img className={`avatar ${className}`} {...props} /> | |
); | |
Avatar.propTypes = { | |
src: PropTypes.string.isRequired, | |
alt: PropTypes.string.isRequired, | |
className: PropTypes.string | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment