import { colors } from '@0x/react-shared'; import Dialog from 'material-ui/Dialog'; import FlatButton from 'material-ui/FlatButton'; import * as React from 'react'; import { constants } from 'ts/utils/constants'; interface U2fNotSupportedDialogProps { isOpen: boolean; onToggleDialog: () => void; } export const U2fNotSupportedDialog = (props: U2fNotSupportedDialogProps) => { return ( ]} open={props.isOpen} onRequestClose={props.onToggleDialog} autoScrollBodyContent={true} >
It looks like your browser does not support U2F connections required for us to communicate with your hardware wallet. Please use a browser that supports U2F connections and try again.
  • Chrome version 38 or later
  • Opera version 40 of later
  • Firefox with{' '} this extension .
); };