paradiego
This commit is contained in:
33
node_modules/@mui/material/StepConnector/StepConnector.d.ts
generated
vendored
Normal file
33
node_modules/@mui/material/StepConnector/StepConnector.d.ts
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
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<unknown> | 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:
|
||||
*
|
||||
* - [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;
|
||||
Reference in New Issue
Block a user