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