astro-ghostcms/.pnpm-store/v3/files/2b/97158c5a8aa1988268397f3ea95...

9 lines
233 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* 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 };