lune-ui-lib
Version:
Lune UI Components Library
22 lines (21 loc) • 453 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;
color?: string;
backgroundColor?: string;
}
export interface StepperProps {
steps: Step[];
sx: SxProps;
}
declare const Stepper: FC<StepperProps>;
export default Stepper;