import { Stopwatch, setStopWatchOffset } from '../../StopWatch'; import { cn } from 'utils/classnames'; import { CheckRoundFilledIcon, ClockOutlineIcon, LoaderIcon, } from 'components/shared/CustomIcon'; enum DeployStatus { PROCESSING = 'progress', COMPLETE = 'complete', NOT_STARTED = 'notStarted', ERROR = 'error', } interface DeployStepsProps { status: DeployStatus; title: string; step?: string; startTime?: string; processTime?: string; } const DeployStep = ({ step, status, title, startTime }: DeployStepsProps) => { return (
); }; export { DeployStep, DeployStatus };