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

18 lines (17 loc) 448 B
import { default as React } from 'react'; export interface FinTabItem { label: React.ReactNode; value?: string | number | React.ReactNode; content?: React.ReactNode; disabled?: boolean; } export interface FinTabsProps { value: any; onChange: (value: any) => void; items: FinTabItem[]; ariaLabel?: string; sx?: any; tabSx?: any; } export declare const FinTabs: React.FC<FinTabsProps>; export default FinTabs;