Use new icons

This commit is contained in:
Jon Staab
2025-09-10 15:26:39 -07:00
parent 6d383d54e8
commit 69bd6d0e70
1415 changed files with 7551 additions and 744 deletions
+2 -1
View File
@@ -15,6 +15,7 @@
import ProfileDetail from "@app/components/ProfileDetail.svelte"
import {pushModal} from "@app/util/modal"
import {clip} from "@app/util/toast"
import Copy from "@assets/icons/copy.svg?dataurl"
type Props = {
pubkey: string
@@ -55,7 +56,7 @@
<div class="flex items-center gap-1 overflow-hidden text-ellipsis text-xs opacity-60">
{displayPubkey(pubkey)}
<Button onclick={copyPubkey} class="pt-1">
<Icon size={3} icon="copy" />
<Icon size={3} icon={Copy} />
</Button>
</div>
{/if}