finform-react-builder
Version:
A powerful, flexible React form builder with dynamic field rendering, custom validation, multi-step forms, Material-UI integration, image component support, toggle/radio buttons, switches, autocomplete, and advanced button positioning
14 lines (13 loc) • 403 B
TypeScript
import { default as React } from 'react';
export interface FinVerticalStepperItem {
label: string;
description?: string;
}
export interface FinVerticalStepperProps {
items: FinVerticalStepperItem[];
activeIndex?: number;
onStepClick?: (index: number) => void;
sx?: any;
completedSteps?: number[];
}
export declare const FinVerticalStepper: React.FC<FinVerticalStepperProps>;