mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00
18 lines
369 B
JavaScript
18 lines
369 B
JavaScript
const Avatar = React.createClass({
|
|
|
|
propTypes: {
|
|
src: React.PropTypes.string.isRequired
|
|
},
|
|
|
|
render () {
|
|
return (
|
|
<div style={{ width: '48px', height: '48px', flex: '0 0 auto' }}>
|
|
<img src={this.props.src} width={48} height={48} alt='' style={{ display: 'block', borderRadius: '4px' }} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
});
|
|
|
|
export default Avatar;
|