svg-in-png
Version:
export SVG into image, its work with recharts and any other image svg
23 lines (18 loc) • 317 B
text/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
}