import { ExternalLinkIcon } from "lucide-react"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; import { useTranslate } from "@/utils/i18n"; interface Props { className?: string; url: string; title?: string; } const LearnMore: React.FC = (props: Props) => { const { className, url, title } = props; const t = useTranslate(); return (

{title ?? t("common.learn-more")}

); }; export default LearnMore;