@uva-glass/component-library
Version:
React components UvA
10 lines (9 loc) • 402 B
TypeScript
export type StatusType = 'DRAFT' | 'REJECTED' | 'SUBMITTED' | 'ACTIVE';
export interface VarIndicatorProps {
label: Record<StatusType, string>;
variant?: StatusType;
maxSteps?: number;
currentStep?: number;
onClick?: () => void;
}
export declare const VarIndicator: ({ label, variant, maxSteps, currentStep, onClick }: VarIndicatorProps) => import("react/jsx-runtime").JSX.Element;