import Dialog from 'material-ui/Dialog'; import FlatButton from 'material-ui/FlatButton'; import * as React from 'react'; import {colors} from 'ts/utils/colors'; import {constants} from 'ts/utils/constants'; interface U2fNotSupportedDialogProps { isOpen: boolean; onToggleDialog: () => void; } export function U2fNotSupportedDialog(props: U2fNotSupportedDialogProps) { return ( , ]} open={props.isOpen} onRequestClose={props.onToggleDialog.bind(this)} 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 .
); }