UNPKG

543 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '@material-ui/core';
3
4export interface TimelineContentProps extends StandardProps<{}, TimelineContentClassKey> {
5 /**
6 * The content of the component.
7 */
8 children?: React.ReactNode;
9}
10
11export type TimelineContentClassKey = 'root';
12
13/**
14 *
15 * Demos:
16 *
17 * - [Timeline](https://mui.com/components/timeline/)
18 *
19 * API:
20 *
21 * - [TimelineContent API](https://mui.com/api/timeline-content/)
22 */
23export default function TimelineContent(props: TimelineContentProps): JSX.Element;