UNPKG

344 BTypeScriptView Raw
1import { Icons } from './types';
2export interface Icon {
3 width: number;
4 height: number;
5 svgPathData: string;
6}
7export interface Tags {
8 [key: string]: string;
9}
10export declare function generateSVG(icon: Icon, tag: string): string;
11export declare function loadFontAwesomeIcons(icons: Icons, toLoad: Array<string>): Promise<void>;