encode-svg-for-css.d.cts 233 B

12345678
  1. /**
  2. * Encode the `SVG` to be used on `CSS`: https://bl.ocks.org/jennyknuth/222825e315d45a738ed9d6e04c7a88d0.
  3. *
  4. * @param svg The `SVG` source.
  5. */
  6. declare function encodeSvgForCss(svg: string): string;
  7. export { encodeSvgForCss };