import { FormattedMessage } from 'react-intl'; import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { ReactComponent as CheckIcon } from '@material-symbols/svg-600/outlined/check.svg'; import { ReactComponent as CloseIcon } from '@material-symbols/svg-600/outlined/close.svg'; import { Icon } from 'mastodon/components/icon'; export default class FollowRequestNote extends ImmutablePureComponent { static propTypes = { account: ImmutablePropTypes.record.isRequired, }; render () { const { account, onAuthorize, onReject } = this.props; return (
}} />
); } }