import { Styles } from '@0xproject/react-shared'; import * as React from 'react'; import { Link } from 'react-router-dom'; import { Island } from 'ts/components/ui/island'; import { colors } from 'ts/style/colors'; export interface BackButtonProps { to: string; labelText: string; } const BACK_BUTTON_HEIGHT = 28; const styles: Styles = { backButton: { height: BACK_BUTTON_HEIGHT, paddingTop: 10, borderRadius: BACK_BUTTON_HEIGHT, }, backButtonIcon: { color: colors.mediumBlue, fontSize: 20, }, }; export const BackButton = (props: BackButtonProps) => { return (
{props.labelText}
); };