2017-05-03 00:04:16 +00: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 02:26:55 +00:00
|
|
|
<div className='column-back-button--slim'>
|
2017-04-23 12:18:58 +00:00
|
|
|
<div role='button' tabIndex='0' onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2018-09-27 15:08:56 +00:00
|
|
|
<i className='fas 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 15:31:47 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|