1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { DialogActions as MuiDialogActions } from '@material-ui/core/';
6 import { StyleRulesCallback, withStyles } from '@material-ui/core';
8 const styles: StyleRulesCallback<'root'> = theme => {
9 const margin = theme.spacing.unit * 3;
18 export const DialogActions = withStyles(styles)(MuiDialogActions);