@mint-ui/map
Version:
- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported
11 lines (10 loc) • 427 B
TypeScript
import React from "react";
import { PropsWithChildren } from "react";
export interface SVGRectProps {
width?: number;
height?: number;
background?: string;
svgProperties?: React.SVGProps<SVGSVGElement>;
shapeProperties?: React.SVGProps<SVGRectElement>;
}
export declare function SVGRect({ width, height, background, svgProperties, shapeProperties, children }: PropsWithChildren<SVGRectProps>): JSX.Element;