UNPKG

@finagraph/strongbox-finconnect-react

Version:

React components to integrate with Finagraph Strongbox

13 lines (12 loc) 384 B
import * as React from 'react'; import '../styles.scss'; import { Theme } from '../Models/Theme/Theme'; import { TextContent } from '../Text/TextContent'; export type WorkingStepProps = { theme?: Theme; children?: JSX.Element; textContent: TextContent; content: string; }; declare const WorkingStep: React.FC<WorkingStepProps>; export default WorkingStep;