@mint-ui/map
Version:
- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported
13 lines (12 loc) • 531 B
TypeScript
import React from "react";
import { PropsWithChildren } from "react";
import { Offset } from "../../../../types";
export interface SVGPolygonProps {
path: Offset[];
innerPath?: Offset[][];
background?: string;
mode?: 'POLYGON' | 'POLYLINE';
svgProperties?: React.SVGProps<SVGSVGElement>;
shapeProperties?: React.SVGProps<SVGPathElement>;
}
export declare function SVGPolygon({ path, innerPath, background, svgProperties, shapeProperties, mode, children, }: PropsWithChildren<SVGPolygonProps>): JSX.Element;