@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
13 lines (12 loc) • 390 B
TypeScript
import * as React from 'react';
import '../styles.scss';
import { Theme } from '../Models/Theme/Theme';
import { TextContent } from '../Text/TextContent';
export type IntroBannerProps = {
theme?: Theme;
textContent: TextContent;
authWindowActive: boolean;
abort?: () => void;
};
declare const IntroBanner: React.FC<IntroBannerProps>;
export default IntroBanner;