import { type ReactElement, cloneElement } from "react"; export default function Tooltip({ id, title, element, }: { title: string; id: string; element: ReactElement; }) { return ( <> {cloneElement(element, { "data-tooltip-target": id })} ); }