import { IconByIconName } from "@scandic-hotels/design-system/Icons/IconByIconName" import { getIconByPoiGroupAndCategory } from "../utils" import { poiVariants } from "./variants" import type { PoiMarkerProps } from "@/types/components/maps/poiMarker" export default function PoiMarker({ group, categoryName, skipBackground, size = "small", className = "", }: PoiMarkerProps) { const iconName = getIconByPoiGroupAndCategory(group, categoryName) const classNames = poiVariants({ group, skipBackground, size, className }) return iconName ? ( ) : null }