UNPKG

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