mastodon/app/javascript/mastodon/components/bot_icon.js
2018-09-27 17:08:56 +02:00

24 lines
485 B
JavaScript

import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
export default class BotIcon extends ImmutablePureComponent {
static propTypes = {
account: ImmutablePropTypes.map.isRequired,
};
render () {
const { account } = this.props;
if (account.get('bot')) {
return (
<i className='fas fa-fw fa-robot bot-icon' />
);
}
return '';
}
}