@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
27 lines (26 loc) • 728 B
TypeScript
import { DialogTitleProps } from '@material-ui/core/DialogTitle';
export interface IDialogTitleProps extends DialogTitleProps {
/**
* Component children, usually the included sub-components.
*
* @required
* @type node
*/
children: DialogTitleProps['children'];
/**
* Override or extend the styles applied to the component.
*
* @optional
* @type object
*/
classes?: DialogTitleProps['classes'];
/**
* Used in `DialogTitle`. If `true`, the children won't be wrapped by a `Typography` component.
*
* @default false
* @optional
* @see Typography
* @type bool
*/
disableTypography?: DialogTitleProps['disableTypography'];
}