helpers.d.ts 353 B

1234567891011
  1. import { IconDefinition } from './types';
  2. export interface HelperRenderOptions {
  3. placeholders?: {
  4. primaryColor: string;
  5. secondaryColor: string;
  6. };
  7. extraSVGAttrs?: {
  8. [key: string]: string;
  9. };
  10. }
  11. export declare function renderIconDefinitionToSVGElement(icond: IconDefinition, options?: HelperRenderOptions): string;