UNPKG

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

24 lines (23 loc) 540 B
import { default as React } from 'react'; import { Control } from 'react-hook-form'; export interface ListCardItem { id: string | number; header?: string; chipText?: string; leftAction?: { name: string; label?: string; }; rightAction?: { name: string; label?: string; }; } export interface FinListCardsProps { name: string; control: Control<any>; items: ListCardItem[]; sx?: any; cardSx?: any; } export declare const FinListCards: React.FC<FinListCardsProps>;