@material-ui/core
Version:
React components that implement Google's Material Design.
29 lines (25 loc) • 637 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface DialogContentProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, DialogContentClassKey> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Display the top and bottom dividers.
*/
dividers?: boolean;
}
export type DialogContentClassKey = 'root' | 'dividers';
/**
*
* Demos:
*
* - [Dialogs](https://mui.com/components/dialogs/)
*
* API:
*
* - [DialogContent API](https://mui.com/api/dialog-content/)
*/
export default function DialogContent(props: DialogContentProps): JSX.Element;