mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
23 lines
484 B
JavaScript
23 lines
484 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='fa fa-fw fa-robot bot-icon' />
|
|
);
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
}
|