mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
25 lines
731 B
JavaScript
25 lines
731 B
JavaScript
import React from 'react';
|
|
import Avatar from 'flavours/glitch/components/avatar';
|
|
import DisplayName from 'flavours/glitch/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='account small' title={account.get('acct')}>
|
|
<div className='account__avatar-wrapper'><Avatar account={account} size={24} /></div>
|
|
<DisplayName account={account} inline />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|