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.
25 lines
717 B
25 lines
717 B
8 years ago
|
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';
|
||
|
|
||
8 years ago
|
export default class AutosuggestAccount extends ImmutablePureComponent {
|
||
8 years ago
|
|
||
8 years ago
|
static propTypes = {
|
||
8 years ago
|
account: ImmutablePropTypes.map.isRequired,
|
||
8 years ago
|
};
|
||
|
|
||
8 years ago
|
render () {
|
||
|
const { account } = this.props;
|
||
|
|
||
|
return (
|
||
6 years ago
|
<div className='autosuggest-account' title={account.get('acct')}>
|
||
7 years ago
|
<div className='autosuggest-account-icon'><Avatar account={account} size={18} /></div>
|
||
8 years ago
|
<DisplayName account={account} />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|