@kiwicom/smart-faq
Version:
19 lines (14 loc) • 483 B
JavaScript
// @flow
import * as React from 'react';
import { withRouter } from 'react-router-dom';
import styled from 'styled-components';
import { ChevronLeft } from '@kiwicom/orbit-components/lib/icons';
const BackButtonMobileWrapper = styled.div`
outline: 0;
`;
const BackButtonMobile = () => (
<BackButtonMobileWrapper data-cy="back-button-mobile">
<ChevronLeft size="medium" customColor="#45505d" />
</BackButtonMobileWrapper>
);
export default withRouter(BackButtonMobile);