"use client"; interface Props { active: boolean; onClick: () => void; } /** * Floating button shown below the map to toggle "add custom POI" click mode. * When active, cursor becomes crosshair and next map click opens the add modal. */ export function CustomPoiToggleButton({ active, onClick }: Props) { return ( ); }