import type { AnchorHTMLAttributes } from 'react'; import { FiExternalLink } from 'react-icons/fi'; export type ExtLinkProps = AnchorHTMLAttributes & { icon?: boolean; }; export function ExtLink({ className, icon = true, children, ...props }: ExtLinkProps) { return ( {children} {icon && } ); }