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.
24 lines
717 B
24 lines
717 B
import React from 'react'; |
|
import Avatar from '../../../components/avatar'; |
|
import DisplayName from '../../../components/display_name'; |
|
import ImmutablePropTypes from 'react-immutable-proptypes'; |
|
import ImmutablePureComponent from 'react-immutable-pure-component'; |
|
|
|
export default class AutosuggestAccount extends ImmutablePureComponent { |
|
|
|
static propTypes = { |
|
account: ImmutablePropTypes.map.isRequired, |
|
}; |
|
|
|
render () { |
|
const { account } = this.props; |
|
|
|
return ( |
|
<div className='autosuggest-account' title={account.get('acct')}> |
|
<div className='autosuggest-account-icon'><Avatar account={account} size={18} /></div> |
|
<DisplayName account={account} /> |
|
</div> |
|
); |
|
} |
|
|
|
}
|
|
|