import { CX } from '../constants' import Button from './button' export default class BackButton extends PureComponent { static contextTypes = { router: PropTypes.object, } static propTypes = { className: PropTypes.string, icon: PropTypes.string, iconClassName: PropTypes.string, iconSize: PropTypes.string, } historyBack = () => { if (window.history && window.history.length === 1) { this.context.router.history.push('/home') } else { this.context.router.history.goBack() } } handleBackClick = () => { this.historyBack() } render() { const { className, icon, iconClassName, iconSize, } = this.props const classes = CX(className, { alignItemsCenter: 1, bgTransparent: 1, mr5: 1, cursorPointer: 1, outlineNone: 1, default: 1, justifyContentCenter: 1, }) return (