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