UNPKG

@uva-glass/component-library

Version:

React components UvA

10 lines (9 loc) 402 B
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;