From 57c4f0a32b5cd1c6a74ca928775f03e111895539 Mon Sep 17 00:00:00 2001 From: javaisbetterthanpython Date: Sun, 7 Jun 2026 00:36:46 -0400 Subject: [PATCH] Fix pair link icon for react-iconly compatibility. Replace nonexistent react-iconly Link export with an inline chain-link SVG via PairLinkIcon so yarn build type-checks cleanly. Co-authored-by: Cursor --- src/PairLinkIcon.tsx | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/PairLinkIcon.tsx diff --git a/src/PairLinkIcon.tsx b/src/PairLinkIcon.tsx new file mode 100644 index 0000000..4d1474a --- /dev/null +++ b/src/PairLinkIcon.tsx @@ -0,0 +1,39 @@ +import clsx from "clsx"; + +export function PairLinkIcon({ + partnerName, + className, +}: { + partnerName?: string; + className?: string; +}) { + const icon = ( + + + + + ); + + if (!partnerName) { + return {icon}; + } + + return ( + + {icon} + + ); +}