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