@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.
17 lines (16 loc) • 373 B
TypeScript
import { default as React } from 'react';
export declare enum IframeTypeEnum {
ACH = 0,
CREDIT_CARD = 1
}
interface IframeProps {
source: string;
title: string;
type: IframeTypeEnum;
proceed?: any;
onCancel?: () => void;
onLoad?: () => void;
onProgress?: () => void;
}
declare const Iframe: React.FC<IframeProps>;
export default Iframe;