import Tippy from "@tippyjs/react"; import { roundArrow } from "tippy.js"; import "tippy.js/dist/svg-arrow.css"; import IconQuestion from "../../../assets/icons/question.svg"; // import { useTranslation } from "react-i18next"; import { PropsWithChildren } from "react"; import { Trans } from 'react-i18next'; const Link = ({ to, children }: PropsWithChildren<{ to: string }>) => { return {children} ; }; export default function Tooltip({ link = "#" }) { return ( } > ); }