Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Last active June 22, 2018 09:05
Show Gist options
  • Save diegohaz/abb88b22cca882b356d210d92bb19097 to your computer and use it in GitHub Desktop.
Save diegohaz/abb88b22cca882b356d210d92bb19097 to your computer and use it in GitHub Desktop.
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