@mint-ui/map
Version:
- React map library - Control various map with one interface - Google, Naver, Kakao map supported now - Typescript supported - Canvas marker supported
9 lines (8 loc) • 389 B
TypeScript
import React, { PropsWithChildren } from "react";
export interface SVGCircleProps {
radius?: number;
background?: string;
svgProperties?: React.SVGProps<SVGSVGElement>;
shapeProperties?: React.SVGProps<SVGCircleElement>;
}
export declare function SVGCircle({ radius, background, children, svgProperties, shapeProperties, }: PropsWithChildren<SVGCircleProps>): JSX.Element;