UNPKG

@rajkrajpj/cultivate-ui-library

Version:

A modern, type-safe, accessible React component library for fintech investor forms. Build complete investor forms in minutes with zero configuration, supporting multiple regulations (RegA+, RegD, RegCF) and investor types.

11 lines (10 loc) 285 B
import { default as React } from 'react'; interface GenericModalProps { open: boolean; onClose: () => void; title: string; children: React.ReactNode; actions?: React.ReactNode; } declare const GenericModal: React.FC<GenericModalProps>; export default GenericModal;