38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import * as React from 'react';
|
|
import { SxProps } from '@mui/system';
|
|
import { Theme } from '@mui/material/styles';
|
|
import { InternalStandardProps as StandardProps, TypographyProps } from '@mui/material';
|
|
import { TimelineOppositeContentClasses } from './timelineOppositeContentClasses';
|
|
|
|
export interface TimelineOppositeContentProps extends StandardProps<TypographyProps> {
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children?: React.ReactNode;
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes?: Partial<TimelineOppositeContentClasses>;
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx?: SxProps<Theme>;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
|
|
* - inherits [Typography API](https://mui.com/material-ui/api/typography/)
|
|
*/
|
|
declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => JSX.Element) & {
|
|
muiName: string;
|
|
};
|
|
|
|
export default TimelineOppositeContent;
|