import { jsx as _jsx } from "react/jsx-runtime";
import { forwardRef } from "react";
const containerId = "mapka-maplibre-container";
export const MapLibreContainer = forwardRef((props, ref) => {
return _jsx("div", { id: containerId, ref: ref, ...props });
});