import { colors } from '@0xproject/react-shared';
import Dialog from 'material-ui/Dialog';
import FlatButton from 'material-ui/FlatButton';
import * as React from 'react';
interface FillWarningDialogProps {
isOpen: boolean;
onToggleDialog: (didUserCancel: boolean) => void;
}
export const FillWarningDialog = (props: FillWarningDialogProps) => {
const didCancel = true;
return (
,