import { GoogleMarkerProps } from "../../types"; import React from "react"; import { poiIcons } from "~/constants/pois"; export const GoogleMarker = ({ type }: GoogleMarkerProps) => { const Icon = poiIcons[type]; return ( ); };