import { ReactNode } from "react";
import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/solid";
import Link from "next/link";
interface Props {
className?: string;
href: string;
target?: string;
children?: ReactNode;
}
const ExtLearnMoreLink = ({ className, href, target, children }: Props) => {
return (
{children}{" "}
);
};
export default ExtLearnMoreLink;