@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
26 lines (25 loc) • 786 B
TypeScript
import './StrongboxModal.scss';
import * as React from 'react';
import { PropsWithChildren } from 'react';
import { Theme } from '../../Models/Theme/Theme';
interface IStrongboxModalProps {
className?: string;
closeOnEscape?: boolean;
closeOnOverlayClick: boolean;
containerClassName?: string;
onClose?: () => void;
theme?: Theme;
type?: 'full' | 'simple';
}
type Props = IStrongboxModalProps;
export declare class StrongboxModal extends React.Component<Props & PropsWithChildren> {
static defaultProps: {
containerClassName: string;
closeOnEscape: boolean;
type: string;
};
private static _modalStyles;
private GetModalStyle;
render(): React.JSX.Element;
}
export default StrongboxModal;