Skip to content

Instantly share code, notes, and snippets.

@joaopaulomoraes
Created May 3, 2019 00:24
Show Gist options
  • Save joaopaulomoraes/867f60562dacb51fd2372c5494a1feb3 to your computer and use it in GitHub Desktop.
Save joaopaulomoraes/867f60562dacb51fd2372c5494a1feb3 to your computer and use it in GitHub Desktop.
import React from 'react'
const styles = {
root: {
margin: '5vw'
},
avatar: {
width: 100,
borderRadius: '50%',
padding: 5,
boxShadow: '0px 5px 25px 0px rgba(0,0,0,0.5)'
}
}
const Avatar = ({ url }) => {
return (
<div style={styles.root}>
<img
src={url}
alt="Avatar"
style={styles.avatar}
/>
</div>
)
}
export default Avatar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment