UNPKG

709 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export type StepConnectorIcon = React.ReactElement | string | number;
5
6export interface StepConnectorProps
7 extends StandardProps<React.HTMLAttributes<HTMLDivElement>, StepConnectorClasskey, 'children'> {}
8
9export type StepConnectorClasskey =
10 | 'root'
11 | 'horizontal'
12 | 'vertical'
13 | 'alternativeLabel'
14 | 'active'
15 | 'completed'
16 | 'disabled'
17 | 'line'
18 | 'lineHorizontal'
19 | 'lineVertical';
20
21/**
22 *
23 * Demos:
24 *
25 * - [Steppers](https://mui.com/components/steppers/)
26 *
27 * API:
28 *
29 * - [StepConnector API](https://mui.com/api/step-connector/)
30 */
31export default function StepConnector(props: StepConnectorProps): JSX.Element;