diff options
Diffstat (limited to 'vnext/src/components/Avatar.js')
-rw-r--r-- | vnext/src/components/Avatar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Avatar.js b/vnext/src/components/Avatar.js index 4c3ac0b6..002badde 100644 --- a/vnext/src/components/Avatar.js +++ b/vnext/src/components/Avatar.js @@ -8,7 +8,7 @@ import Icon from './Icon'; const Avatar = React.memo(props => { return ( - <div style={{ display: 'flex', padding: '12px' }}> + <div style={Object.assign({ display: 'flex', padding: '12px' }, props.style)}> <div className="msg-avatar"> { props.user.uname ? |