/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/StepConnector/StepConnector.d.ts
35 строк
1 KB
Siriwat K
[internal] Prepare libraries for v9 stable release (#48206)
07 апр 2026, 11:54
Не верифицирован
07 апр 2026, 11:54
e4de3e2
Код
Авторство
О чём код?
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '../styles'; import { InternalStandardProps as StandardProps } from '../internal'; import { StepConnectorClasses } from './stepConnectorClasses'; export type StepConnectorIcon = React.ReactElement<unknown> | string | number; export interface StepConnectorProps extends StandardProps< React.HTMLAttributes<HTMLDivElement>, 'children' > { /** * Override or extend the styles applied to the component. */ classes?: Partial<StepConnectorClasses> | undefined; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme> | undefined; } export type StepConnectorClasskey = keyof NonNullable<StepConnectorProps['classes']>; /** * * Demos: * * - [Stepper](https://mui.com/material-ui/react-stepper/) * * API: * * - [StepConnector API](https://mui.com/material-ui/api/step-connector/) */ export default function StepConnector(props: StepConnectorProps): React.JSX.Element;