import { Tooltip } from "@mui/joy"; import { ExternalLinkIcon } from "lucide-react"; 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 ( ); }; export default LearnMore;