@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
24 lines (23 loc) • 752 B
TypeScript
import * as React from 'react';
import { PropsWithChildren } from 'react';
import './StrongboxModal.scss';
import { Theme } from '../../Models/Theme/Theme';
interface ISimpleModalProps {
actions?: JSX.Element[];
cancelButtonClassName?: string;
submitButtonClassName?: string;
className?: string;
contentClassName: string;
actionsClassName?: string;
closeOnOverlayClick: boolean;
disableActions?: boolean;
onCancel?: () => void;
onCancelLabel?: string;
onClose?: () => void;
onComplete?: () => void;
onCompleteLabel?: string;
theme?: Theme;
title?: string;
}
export declare const SimpleModal: React.FC<ISimpleModalProps & PropsWithChildren>;
export default SimpleModal;