UNPKG

@finagraph/strongbox-finconnect-react

Version:

React components to integrate with Finagraph Strongbox

15 lines (14 loc) 489 B
import * as React from 'react'; import '../styles.scss'; import { Theme } from '../Models/Theme/Theme'; import { TextContent } from '../Text/TextContent'; export type LinkProgressProps = { theme?: Theme; onProgressComplete: () => void; children?: JSX.Element; onLinkPctgChange?: (pctComplete: number) => void; linkPctgComplete: number; textContent: TextContent; }; declare const LinkProgress: React.FC<LinkProgressProps>; export default LinkProgress;