UNPKG

react-bkoi-gl

Version:

React components for Barikoi GL JS

10 lines (9 loc) 447 B
import * as React from "react"; import type { ControlPosition, AttributionControlOptions } from "../types/lib"; export type AttributionControlProps = AttributionControlOptions & { /** Placement of the control relative to the map. */ position?: ControlPosition; /** CSS style override, applied to the control's container */ style?: React.CSSProperties; }; export declare const AttributionControl: React.FC<AttributionControlProps>;