forked from coracle/flotilla
32 lines
776 B
Svelte
32 lines
776 B
Svelte
<script lang="ts">
|
|
import Button from "@lib/components/Button.svelte"
|
|
import ModalHeader from "@lib/components/ModalHeader.svelte"
|
|
import Profile from "@app/components/Profile.svelte"
|
|
|
|
interface Props {
|
|
title: any
|
|
pubkeys: any
|
|
subtitle?: string
|
|
url?: string
|
|
}
|
|
|
|
const {subtitle = "", pubkeys, url, ...restProps}: Props = $props()
|
|
</script>
|
|
|
|
<div class="column gap-4">
|
|
<ModalHeader>
|
|
{#snippet title()}
|
|
<div>{restProps.title}</div>
|
|
{/snippet}
|
|
{#snippet info()}
|
|
<div>{subtitle}</div>
|
|
{/snippet}
|
|
</ModalHeader>
|
|
{#each pubkeys as pubkey (pubkey)}
|
|
<div class="card2 bg-alt">
|
|
<Profile {pubkey} {url} />
|
|
</div>
|
|
{/each}
|
|
<Button class="btn btn-primary" onclick={() => history.back()}>Got it</Button>
|
|
</div>
|