feat(ui): add link icon and use it for copy-to-clipboard buttons

Replace copy icon with new link icon in share URL copy button
and TextField copyable button for better visual indication.
This commit is contained in:
David Hill
2026-01-24 21:53:56 +00:00
parent c1af7ddc6b
commit c2ec608212
3 changed files with 4 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ export function TextField(props: TextFieldProps) {
>
<IconButton
type="button"
icon={copied() ? "check" : "copy"}
icon={copied() ? "check" : "link"}
variant="ghost"
onClick={handleCopy}
data-slot="input-copy-button"