UNPKG

svgicons2svgfont

Version:

Read a set of SVG icons and output a SVG font

14 lines (13 loc) 690 B
declare const svgShapesToPath: { rectToPath: typeof svgShapesToPathRectToPath; polylineToPath: typeof svgShapesToPathPolylineToPath; lineToPath: typeof svgShapesToPathLineToPath; circleToPath: typeof svgShapesToPathCircleToPath; polygonToPath: typeof svgShapesToPathPolygonToPath; }; export default svgShapesToPath; declare function svgShapesToPathRectToPath(attributes: any): string; declare function svgShapesToPathPolylineToPath(attributes: any): string; declare function svgShapesToPathLineToPath(attributes: any): string; declare function svgShapesToPathCircleToPath(attributes: any): string; declare function svgShapesToPathPolygonToPath(attributes: any): string;