// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { defaultTo, property } from 'lodash'; import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Typography, DialogContentText, CircularProgress } from "@material-ui/core"; import { WithDialogProps } from "../../store/dialog/with-dialog"; import { TextField } from "../text-field/text-field"; export interface ConfirmationDialogDataProps { title: string; text: string; cancelButtonLabel?: string; confirmButtonLabel?: string; } export interface ConfirmationDialogProps { onConfirm: () => void; } export const ConfirmationDialog = (props: ConfirmationDialogProps & WithDialogProps) => {props.data.title} {props.data.text} ;