import { GoLinkExternal } from "react-icons/go"; type VisitButtonProps = { href: string; }; export function ProjectVisitButton({ href }: VisitButtonProps) { if (href === "" || href === null) { return; } return (