import React from "react"; import { SVG } from "@local-logic/core/ui"; import { poiIcons } from "~/constants/pois"; import { useRootElement } from "../context"; import { IconProps } from "./types"; export const Icon: React.FC = ({ options }) => { const { options: { poi }, } = useRootElement(); return ( ); }; Icon.defaultProps = { options: { color: "--ll-color-on-background-variant1", }, };