@material-ui/core
Version:
React components that implement Google's Material Design.
17 lines (12 loc) • 442 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface StepIconProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, StepIconClasskey> {
active?: boolean;
completed?: boolean;
error?: boolean;
icon: React.ReactNode;
}
export type StepIconClasskey = 'root' | 'text' | 'active' | 'completed' | 'error';
declare const StepIcon: React.ComponentType<StepIconProps>;
export default StepIcon;