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) • 333 B
TypeScript
import { default as React } from 'react';
interface ImageComponentProps {
src?: string;
alt?: string;
width?: number | string;
height?: number | string;
style?: React.CSSProperties;
className?: string;
onClick?: () => void;
}
export declare const ImageComponent: React.FC<ImageComponentProps>;
export {};