geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
20 lines • 571 B
TypeScript
export type StepperValue = {
id: string | number;
value?: number;
label: string;
status: StepItemStatus.PENDING | StepItemStatus.CURRENT | StepItemStatus.COMPLETED;
};
export interface StepperItemProps {
value: StepperValue;
variant: StepItemStatus.PENDING | StepItemStatus.CURRENT | StepItemStatus.COMPLETED;
}
export declare enum StepItemStatus {
CURRENT = "current",
PENDING = "pending",
COMPLETED = "completed"
}
export type StepperProps = {
value: StepperValue[];
id?: string;
};
//# sourceMappingURL=stepper.type.d.ts.map