@mui/material
Version:
Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.
34 lines (29 loc) • 981 B
TypeScript
import * as React from 'react';
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps } from '..';
import { Theme } from '../styles';
import { StepConnectorClasses } from './stepConnectorClasses';
export type StepConnectorIcon = React.ReactElement | string | number;
export interface StepConnectorProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, 'children'> {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<StepConnectorClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export type StepConnectorClasskey = keyof NonNullable<StepConnectorProps['classes']>;
/**
*
* Demos:
*
* - [Steppers](https://mui.com/components/steppers/)
*
* API:
*
* - [StepConnector API](https://mui.com/api/step-connector/)
*/
export default function StepConnector(props: StepConnectorProps): JSX.Element;