import { FaExternalLinkAlt } from "react-icons/fa"; type Props = { url: string; size?: "normal" | "small"; }; export const BoxedLink: React.FC = ({ url, size = "normal", children, }) => ( {children} );