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