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
13 lines (12 loc) • 422 B
TypeScript
import { default as React } from 'react';
export interface FinCustomizedVerticalStepperItem {
label: string;
description?: string;
}
export interface FinCustomizedVerticalStepperProps {
items: FinCustomizedVerticalStepperItem[];
activeIndex?: number;
onStepClick?: (index: number) => void;
sx?: any;
}
export declare const FinCustomizedVerticalStepper: React.FC<FinCustomizedVerticalStepperProps>;