@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
13 lines • 449 B
TypeScript
export interface Step {
id: string;
label: string;
description?: string;
}
export interface StepIndicatorProps {
steps: Step[];
currentStep: number;
variant?: 'horizontal' | 'vertical';
onStepClick?: (stepIndex: number) => void;
}
export default function StepIndicator({ steps, currentStep, variant, onStepClick, }: StepIndicatorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=StepIndicator.d.ts.map