You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
726 B
32 lines
726 B
import React from 'react'; |
|
import PropTypes from 'prop-types'; |
|
|
|
class AvatarOverlay extends React.PureComponent { |
|
|
|
static propTypes = { |
|
staticSrc: PropTypes.string.isRequired, |
|
overlaySrc: PropTypes.string.isRequired, |
|
}; |
|
|
|
render() { |
|
const {staticSrc, overlaySrc} = this.props; |
|
|
|
const baseStyle = { |
|
backgroundImage: `url(${staticSrc})`, |
|
}; |
|
|
|
const overlayStyle = { |
|
backgroundImage: `url(${overlaySrc})`, |
|
}; |
|
|
|
return ( |
|
<div className='account__avatar-overlay'> |
|
<div className="account__avatar-overlay-base" style={baseStyle} /> |
|
<div className="account__avatar-overlay-overlay" style={overlayStyle} /> |
|
</div> |
|
); |
|
} |
|
|
|
} |
|
|
|
export default AvatarOverlay;
|
|
|