2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-12 19:26:23 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2019-02-01 08:14:05 +09:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2017-04-08 20:07:55 +09:00
|
|
|
|
2018-03-06 15:28:26 +09:00
|
|
|
export default class ClearColumnButton extends React.PureComponent {
|
2017-04-08 20:07:55 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static propTypes = {
|
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-04-08 20:07:55 +09:00
|
|
|
render () {
|
|
|
|
return (
|
2019-02-01 08:14:05 +09:00
|
|
|
<button className='text-btn column-header__setting-btn' tabIndex='0' onClick={this.props.onClick}><Icon id='eraser' /> <FormattedMessage id='notifications.clear' defaultMessage='Clear notifications' /></button>
|
2017-04-08 20:07:55 +09:00
|
|
|
);
|
|
|
|
}
|
2017-05-21 00:31:47 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|