Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99909274
DialogTitle.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jan 27, 05:54
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Jan 29, 05:54 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23807991
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
DialogTitle.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { Theme } from '../styles';
import { TypographyTypeMap } from '../Typography';
import { DialogTitleClasses } from './dialogTitleClasses';
export interface DialogTitleTypeMap<
P = {},
D extends React.ElementType = TypographyTypeMap['defaultComponent'],
> {
props: P & {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<DialogTitleClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
} & Omit<TypographyTypeMap['props'], 'classes'>;
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Dialog](https://mui.com/material-ui/react-dialog/)
*
* API:
*
* - [DialogTitle API](https://mui.com/material-ui/api/dialog-title/)
*/
declare const DialogTitle: OverridableComponent<DialogTitleTypeMap>;
export type DialogTitleProps<
D extends React.ElementType = DialogTitleTypeMap['defaultComponent'],
P = { component?: React.ElementType },
> = OverrideProps<DialogTitleTypeMap<P, D>, D>;
export default DialogTitle;
Event Timeline
Log In to Comment