import Dialog from 'material-ui/Dialog'; import FlatButton from 'material-ui/FlatButton'; import * as React from 'react'; import { colors } from 'ts/utils/colors'; interface FillWarningDialogProps { isOpen: boolean; onToggleDialog: () => void; } export function FillWarningDialog(props: FillWarningDialogProps) { const didCancel = true; return ( , , ]} open={props.isOpen} onRequestClose={props.onToggleDialog.bind(this)} autoScrollBodyContent={true} modal={true} >
At least one of the tokens in this order was not found in the token registry smart contract and may be counterfeit. It is your responsibility to verify the token addresses on Etherscan ( See this how-to guide ) before filling an order. This action may result in the loss of funds.
); }