Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Created December 21, 2015 04:13
Show Gist options
  • Save abhiaiyer91/5e226b614b50c138d07b to your computer and use it in GitHub Desktop.
Save abhiaiyer91/5e226b614b50c138d07b to your computer and use it in GitHub Desktop.
const ProfileAvatarComponent = ({profilePhoto, role}) => {
const roleClass = role === 'Admin' ? 'blue-outline' : 'grey-outline';
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