UNPKG

svgmap-core

Version:

Core app for rendering SVG Maps in React based on the given drawpath

15 lines (14 loc) 318 B
export type MapPropType = { className?: string; size?: string; mapColor?: string; strokeColor?: string; strokeWidth?: string; hoverColor?: string; viewBox?: string; onClick: (value: string) => void; drawPath: { [code: string]: string; }; districtCodes: string[]; };