import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; import { TwoTonedIcon } from '../iconTypes'; import * as vars from '../../styles/variables'; const ICON_CLASS = 'unknown-user-avatar'; class UnknownUserAvatar extends React.PureComponent { static defaultProps = { className: '', height: 28, width: 28, }; render() { const { className, height, title, width } = this.props; return ( ); } } export default UnknownUserAvatar;