import { PlacesType, Tooltip } from "react-tooltip"; import "./CustomTooltip.css"; interface CustomTooltipProps { anchorId: string; children?: React.ReactNode; clickable?: boolean; place?: PlacesType; } export const CustomTooltip = ({ anchorId, children, clickable = true, place = "top" }: CustomTooltipProps) => { const id = `${anchorId}-tooltip`; return (
{children}
); };