slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
12 lines (11 loc) • 364 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;