Files
flotilla/src/app/components/ProfileCircle.svelte
T
2025-02-03 17:21:46 -08:00

11 lines
272 B
Svelte

<script lang="ts">
import {deriveProfile} from "@welshman/app"
import Avatar from "@lib/components/Avatar.svelte"
const {...props} = $props()
const profile = deriveProfile(props.pubkey)
</script>
<Avatar src={$profile?.picture} icon="user-circle" {...props} />