import { ExternalLink } from "react-feather"; export const SocketScanLink = ({ txHash }: { txHash: string }) => { if (!txHash) return null; return ( Track this transaction on SocketScan{" "} ); };