import { ArrowRightIcon } from "@heroicons/react/24/solid"; export const ExternalLink = ({ children, href, }: { children: React.ReactNode; href: string; }) => { return (
{children}
); };