@goongmaps/goong-map-react
Version:
A fork of react-map-gl. React components for Goong JS
13 lines (10 loc) • 367 B
TypeScript
import {ReactElement} from 'react';
import {MapControlProps} from './use-map-control';
export type AttributionControlProps = MapControlProps & Partial<{
toggleLabel: string,
className: string,
style: Object,
compact: boolean,
customAttribution: string|[string]
}>;
export default function AttributionControl(props: AttributionControlProps): ReactElement;