2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-01-03 01:15:42 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2018-02-03 18:41:51 +01:00
|
|
|
import ColumnBackButton from './column_back_button';
|
2017-01-03 01:15:42 +01:00
|
|
|
|
2018-02-03 18:41:51 +01:00
|
|
|
export default class ColumnBackButtonSlim extends ColumnBackButton {
|
2017-01-03 01:15:42 +01:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='column-back-button--slim'>
|
2017-04-23 14:18:58 +02:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2018-09-28 02:11:14 +02:00
|
|
|
<i className='fa fa-fw fa-chevron-left column-back-button__icon' />
|
2017-01-03 01:15:42 +01:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 17:31:47 +02:00
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|