@material-ui/lab
Version:
Material-UI Lab - Incubator for Material-UI React components.
32 lines (28 loc) • 811 B
TypeScript
import * as React from 'react';
import { InternalStandardProps as StandardProps } from '@material-ui/core';
export interface TimelineSeparatorProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
/**
* 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 TimelineSeparatorClassKey = keyof NonNullable<TimelineSeparatorProps['classes']>;
/**
*
* Demos:
*
* - [Timeline](https://material-ui.com/components/timeline/)
*
* API:
*
* - [TimelineSeparator API](https://material-ui.com/api/timeline-separator/)
*/
export default function TimelineSeparator(props: TimelineSeparatorProps): JSX.Element;