1234567891011 |
- import { IconDefinition } from './types';
- export interface HelperRenderOptions {
- placeholders?: {
- primaryColor: string;
- secondaryColor: string;
- };
- extraSVGAttrs?: {
- [key: string]: string;
- };
- }
- export declare function renderIconDefinitionToSVGElement(icond: IconDefinition, options?: HelperRenderOptions): string;
|