lune-ui-lib
Version:
Lune UI Components Library
21 lines (20 loc) • 458 B
TypeScript
import type { SxProps } from '@mui/material';
import { FC } from 'react';
export declare enum StepState {
PENDING = 0,
ACTIVE = 1,
COMPLETED = 2,
CANCELED = 3
}
export interface Step {
label: string;
state: StepState;
icon?: JSX.Element;
backgroundColor?: string;
}
export interface ProgressStepsProps {
steps: Step[];
sx?: SxProps;
}
declare const ProgressSteps: FC<ProgressStepsProps>;
export default ProgressSteps;