import { HumanTitle, Tag as TagComponent, Z_INDEX_HIGHEST } from "@heydovetail/ui-components"; import * as React from "react"; import { Tag } from "../HighlightWidgetPlugin"; interface Props { anchorPosition: { x: number; y: number; }; tags: Tag[]; } export const HighlightHover: React.SFC = ({ anchorPosition, tags }) => { return tags.length > 0 ? (
{tags.map(t => ( ))}
) : null; };