import { Children } from "../../types/Preact"; import Tippy, { TippyProps } from '@tippyjs/react'; type Props = Omit & { children: Children; content: Children; } export default function Tooltip(props: Props) { const { children, content, ...tippyProps } = props; return ( {/* // @ts-expect-error */}
{ children }
); }