6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
/**
|
|
* Generate <svg>
|
|
*/
|
|
declare function iconToHTML(body: string, attributes: Record<string, string>): string;
|
|
|
|
export { iconToHTML };
|