@material-ui/core
Version:
React components that implement Google's Material Design.
13 lines (8 loc) • 392 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
import { TypographyProps } from '../Typography';
export interface DialogContentTextProps
extends StandardProps<TypographyProps, DialogContentTextClassKey> {}
export type DialogContentTextClassKey = 'root';
declare const DialogContentText: React.ComponentType<DialogContentTextProps>;
export default DialogContentText;