@material-ui/core
Version:
React components that implement Google's Material Design.
14 lines (9 loc) • 360 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface DialogTitleProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, DialogTitleClassKey> {
disableTypography?: boolean;
}
export type DialogTitleClassKey = 'root';
declare const DialogTitle: React.ComponentType<DialogTitleProps>;
export default DialogTitle;