17 lines
426 B
Svelte
17 lines
426 B
Svelte
<script lang="ts">
|
|
import Avatar from "@lib/components/Avatar.svelte"
|
|
import {removeNil} from "@welshman/lib"
|
|
import {deriveProfile} from "@welshman/app"
|
|
|
|
type Props = {
|
|
pubkey: string
|
|
url?: string
|
|
} & Record<string, any>
|
|
|
|
const {pubkey, url, ...props}: Props = $props()
|
|
|
|
const profile = deriveProfile(pubkey, removeNil([url]))
|
|
</script>
|
|
|
|
<Avatar src={$profile?.picture} icon="user-circle" {...props} />
|