@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
26 lines (25 loc) • 685 B
TypeScript
import { DialogActionsProps } from '@material-ui/core';
export interface IDialogActionsProps extends DialogActionsProps {
/**
* Component children, usually the included sub-components.
*
* @required
* @type node
*/
children: DialogActionsProps['children'];
/**
* Override or extend the styles applied to the component.
*
* @optional
* @type object
*/
classes?: DialogActionsProps['classes'];
/**
* Used in `DialogActions`. If `true`, the actions do not have additional margin.
*
* @default false
* @optional
* @type bool
*/
disableSpacing?: DialogActionsProps['disableSpacing'];
}