mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 21:33:21 +00:00
81ef21a0c8
Port 44a7d87cb1
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
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>
|
|
);
|
|
}
|
|
|
|
}
|