import { EyeSlashIcon, PaperPlaneTiltIcon, XCircleIcon, } from "@phosphor-icons/react"; interface ShareModalProps { shareLink: string | null; setShareLink: (link: string | null) => void; } export function ShareModal({ shareLink, setShareLink }: ShareModalProps) { const copyToClipboard = async () => { if (!shareLink) return; await navigator.clipboard.writeText(shareLink); }; return (

Send this letter

You've carried these words long enough. Send your letter now, and let the unsaid{" "} finally find its home.

The recipient will have the same viewing experience like you do now.

{" "} Zero-Knowledge Share:

The key never leaves your or the recipient's browser.

); }