Files
icehrm/web/node_modules/@ant-design/icons-svg/lib/helpers.d.ts
2020-05-20 18:47:29 +02:00

12 lines
353 B
TypeScript

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;