@vis.gl/react-google-maps
Version:
React components and hooks for the Google Maps JavaScript API
10 lines (9 loc) • 308 B
TypeScript
import { PropsWithChildren } from 'react';
/**
* Props for the Pin component
*/
export type PinProps = google.maps.marker.PinElementOptions;
/**
* Component to configure the appearance of an AdvancedMarker
*/
export declare const Pin: (props: PropsWithChildren<PinProps>) => import("react").ReactPortal;