UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

29 lines (25 loc) 659 B
import * as React from 'react'; import { StandardProps } from '..'; export interface DialogActionsProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, DialogActionsClassKey> { /** * The content of the component. */ children?: React.ReactNode; /** * If `true`, the actions do not have additional margin. */ disableSpacing?: boolean; } export type DialogActionsClassKey = 'root' | 'spacing'; /** * * Demos: * * - [Dialogs](https://mui.com/components/dialogs/) * * API: * * - [DialogActions API](https://mui.com/api/dialog-actions/) */ export default function DialogActions(props: DialogActionsProps): JSX.Element;