More styling for statuses

This commit is contained in:
Eugen Rochko
2016-08-24 21:08:00 +02:00
parent bc0692d75b
commit a541e937ca
11 changed files with 135 additions and 379 deletions

View File

@@ -0,0 +1,17 @@
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;