svg-in-png
Version:
export SVG into image, its work with recharts and any other image svg
20 lines • 365 B
TypeScript
export interface options {
background?: string;
size?: Size;
extraSize?: ExtraSize;
fontFamily?: FontFamily;
}
interface Size {
width: number;
height: number;
}
interface ExtraSize {
width: number;
height: number;
}
interface FontFamily {
url: string;
fontFamily: string;
}
export {};
//# sourceMappingURL=interfaces.d.ts.map