@material-ui/lab
Version:
Laboratory for new Material-UI modules.
34 lines (31 loc) • 1.02 kB
TypeScript
import * as React from 'react';
import { SxProps } from '@material-ui/system';
import { Theme } from '@material-ui/core/styles';
import { InternalStandardProps as StandardProps, TypographyProps } from '@material-ui/core';
import { TimelineContentClasses } from './timelineContentClasses';
export interface TimelineContentProps extends StandardProps<TypographyProps> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TimelineContentClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
/**
*
* Demos:
*
* - [Timeline](https://material-ui.com/components/timeline/)
*
* API:
*
* - [TimelineContent API](https://material-ui.com/api/timeline-content/)
* - inherits [Typography API](https://material-ui.com/api/typography/)
*/
export default function TimelineContent(props: TimelineContentProps): JSX.Element;