@material-ui/lab
Version:
Material-UI Lab - Incubator for Material-UI React components.
26 lines (22 loc) • 663 B
TypeScript
import * as React from 'react';
import { StandardProps, TypographyProps } from '@material-ui/core';
export interface TimelineContentProps
extends StandardProps<TypographyProps, TimelineContentClassKey> {
/**
* The content of the component.
*/
children?: React.ReactNode;
}
export type TimelineContentClassKey = 'root';
/**
*
* 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;