CDP Frontend SDK
    Preparing search index...

    Interface unstable_FundFormProps

    The props for the FundForm component.

    interface unstable_FundFormProps {
        children?: (
            params: {
                view: "error" | "form" | "transaction-status";
                Content: ReactNode;
            },
        ) => ReactNode;
        openIn?: "tab"
        | "popup";
        submitLabel?: ReactNode;
        onPopupOpen?: (popup: Window) => void;
        onPopupClose?: () => void;
        unmountOnTransactionError?: boolean;
        unmountOnTransactionSuccess?: boolean;
        unmount?: () => void;
    }

    Hierarchy

    • Omit<FormHTMLAttributes<HTMLFormElement>, "children">
      • unstable_FundFormProps
    Index

    Properties

    children?: (
        params: {
            view: "error" | "form" | "transaction-status";
            Content: ReactNode;
        },
    ) => ReactNode
    openIn?: "tab" | "popup"
    submitLabel?: ReactNode
    onPopupOpen?: (popup: Window) => void
    onPopupClose?: () => void
    unmountOnTransactionError?: boolean
    unmountOnTransactionSuccess?: boolean
    unmount?: () => void