You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
437 B

  1. const iconStyle = {
  2. fontSize: '16px',
  3. padding: '15px',
  4. position: 'absolute',
  5. right: '48px',
  6. top: '0',
  7. cursor: 'pointer',
  8. zIndex: '2'
  9. };
  10. const ClearColumnButton = ({ onClick }) => (
  11. <div className='column-icon' tabindex='0' style={iconStyle} onClick={onClick}>
  12. <i className='fa fa-trash' />
  13. </div>
  14. );
  15. ClearColumnButton.propTypes = {
  16. onClick: React.PropTypes.func.isRequired
  17. };
  18. export default ClearColumnButton;