2017-01-03 09:15:42 +09:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-24 00:15:17 +09:00
|
|
|
|
2023-05-09 10:11:56 +09:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
2017-01-03 09:15:42 +09:00
|
|
|
|
2023-05-24 00:15:17 +09:00
|
|
|
import ColumnBackButton from './column_back_button';
|
|
|
|
|
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'>
|
2023-04-04 23:33:44 +09:00
|
|
|
<div role='button' tabIndex={0} onClick={this.handleClick} className='column-back-button column-back-button--slim-button'>
|
2019-02-01 08:14:05 +09:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
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
|
|
|
}
|