Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Created December 21, 2015 04:23
Show Gist options
  • Save abhiaiyer91/7935a216ad9d167847c6 to your computer and use it in GitHub Desktop.
Save abhiaiyer91/7935a216ad9d167847c6 to your computer and use it in GitHub Desktop.
const ProfileAvatarComponent = ({profilePhoto, role}) => {
const roleClass = roleOutline(role);
return (
<div className="img-circle">
<div className={roleClass}>
<img src={profilePhoto} className="img-responsive"/>
</div>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment