Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122206228
StepIcon.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
Wed, Jul 16, 15:31
Size
1 KB
Mime Type
text/x-java
Expires
Fri, Jul 18, 15:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27449894
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
StepIcon.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps } from '..';
import { Theme } from '../styles';
import { StepIconClasses } from './stepIconClasses';
export interface StepIconProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, 'children'> {
/**
* Whether this step is active.
* @default false
*/
active?: boolean;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<StepIconClasses>;
/**
* Mark the step as completed. Is passed to child components.
* @default false
*/
completed?: boolean;
/**
* If `true`, the step is marked as failed.
* @default false
*/
error?: boolean;
/**
* The label displayed in the step icon.
*/
icon: React.ReactNode;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export type StepIconClasskey = keyof NonNullable<StepIconProps['classes']>;
/**
*
* Demos:
*
* - [Stepper](https://mui.com/material-ui/react-stepper/)
*
* API:
*
* - [StepIcon API](https://mui.com/material-ui/api/step-icon/)
*/
export default function StepIcon(props: StepIconProps): JSX.Element;
Event Timeline
Log In to Comment