import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; export default class Avatar extends React.PureComponent { static propTypes = { size: PropTypes.number, style: PropTypes.object, inline: PropTypes.bool, }; static defaultProps = { inline: false, }; render() { const { size, inline } = this.props; // : TODO : remove inline and change all avatars to be sized using css const style = !size ? {} : { width: `${size}px`, height: `${size}px`, }; return (
); } }