import Dialog from 'material-ui/Dialog'; import FlatButton from 'material-ui/FlatButton'; import { colors } from 'material-ui/styles'; import * as React from 'react'; interface WrappedEthSectionNoticeDialogProps { isOpen: boolean; onToggleDialog: () => void; } export const WrappedEthSectionNoticeDialog = (props: WrappedEthSectionNoticeDialogProps) => { return ( , ]} open={props.isOpen} onRequestClose={props.onToggleDialog} autoScrollBodyContent={true} modal={true} >
We have recently updated the Wrapped Ether token (WETH) used by 0x Portal. Don't worry, unwrapping Ether tied to the old Wrapped Ether token can be done at any time by clicking on the "Wrap ETH" section in the menu to the left.
); };