Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98159845
StepConnector.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 10, 10:38
Size
998 B
Mime Type
text/x-java
Expires
Sun, Jan 12, 10:38 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23521424
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
StepConnector.d.ts
View Options
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:
*
* - [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): JSX.Element;
Event Timeline
Log In to Comment