34 lines
962 B
TypeScript
34 lines
962 B
TypeScript
import * as React from 'react';
|
|
import { InternalStandardProps as StandardProps } from '@mui/material';
|
|
import { Theme } from '@mui/material/styles';
|
|
import { SxProps } from '@mui/system';
|
|
import { TimelineConnectorClasses } from './timelineConnectorClasses';
|
|
|
|
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?: Partial<TimelineConnectorClasses>;
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx?: SxProps<Theme>;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Timeline](https://mui.com/material-ui/react-timeline/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
|
|
*/
|
|
export default function TimelineConnector(props: TimelineConnectorProps): JSX.Element;
|