You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
233 B
8 lines
233 B
/**
|
|
* Encode the `SVG` to be used on `CSS`: https://bl.ocks.org/jennyknuth/222825e315d45a738ed9d6e04c7a88d0.
|
|
*
|
|
* @param svg The `SVG` source.
|
|
*/
|
|
declare function encodeSvgForCss(svg: string): string;
|
|
|
|
export { encodeSvgForCss };
|
|
|