~cytrogen/masto-fe

ref: c8ba75b963e7a3e2c7ae0a3a3723686e7ea1bd37 masto-fe/app/javascript/mastodon/features/notifications/components/clear_column_button.js -rw-r--r-- 553 bytes
c8ba75b9 — Thibaut Girka Merge branch 'master' into glitch-soc/merge-upstream 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import Icon from 'mastodon/components/icon';

export default class ClearColumnButton extends React.PureComponent {

  static propTypes = {
    onClick: PropTypes.func.isRequired,
  };

  render () {
    return (
      <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>
    );
  }

}