@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
13 lines (12 loc) • 404 B
TypeScript
import * as React from 'react';
/**
* className is the class of the div containing all the bullet stuff.
* bulletClassName is the class name of the region containing the bullet itself containing background color and foreground color
* */
type Props = {
className: string;
bulletClassName: string;
bulletText: string;
};
export declare const Bullet: React.FC<Props>;
export {};