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