bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
13 lines • 433 B
TypeScript
export interface Step {
id: string;
label: string;
description?: string;
status: "pending" | "active" | "complete";
}
export interface StepIndicatorProps {
steps: Step[];
className?: string;
variant?: "horizontal" | "vertical";
}
export declare function StepIndicator({ steps, className, variant, }: StepIndicatorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=StepIndicator.d.ts.map