@material-ui/lab
Version:
Material-UI Lab - Incubator for Material-UI React components.
32 lines (28 loc) • 812 B
TypeScript
import * as React from 'react';
import { InternalStandardProps as StandardProps } from '@material-ui/core';
export interface TimelineConnectorProps
extends StandardProps<React.HTMLAttributes<HTMLSpanElement>> {
/**
* The content of the component.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: {
/** Styles applied to the root element. */
root?: string;
};
}
export type TimelineConnectorClassKey = keyof NonNullable<TimelineConnectorProps['classes']>;
/**
*
* Demos:
*
* - [Timeline](https://material-ui.com/components/timeline/)
*
* API:
*
* - [TimelineConnector API](https://material-ui.com/api/timeline-connector/)
*/
export default function TimelineConnector(props: TimelineConnectorProps): JSX.Element;