import React from "react"; import { theme, Popover, Marker as M } from "@local-logic/core/ui"; import { poiIcons } from "~/constants/pois"; import { useRootElement } from "../context"; export const Marker = () => { const { options: { type, isOpen, isHovered, size, renderForPrint }, } = useRootElement(); return ( ); };