import type { FunctionComponent, MouseEventHandler } from "react"; import { HiExternalLink } from "react-icons/hi"; type Props = { onClick: MouseEventHandler; text: string; }; const PaddleLink: FunctionComponent = ({ onClick, text }) => ( ); export default PaddleLink;