Add room policy indicator

This commit is contained in:
Jon Staab
2025-11-05 16:59:17 -08:00
parent a52c2b4c3c
commit 41d50d8c28
8 changed files with 146 additions and 25 deletions
+21
View File
@@ -0,0 +1,21 @@
<script lang="ts">
import Hashtag from "@assets/icons/hashtag.svg?dataurl"
import Icon from "@lib/components/Icon.svelte"
import ImageIcon from "@lib/components/ImageIcon.svelte"
import {deriveRoom} from "@app/core/state"
interface Props {
h: any
url: any
}
const {url, h}: Props = $props()
const room = deriveRoom(url, h)
</script>
{#if $room.picture}
<ImageIcon src={$room.picture} alt="Room icon" />
{:else}
<Icon icon={Hashtag} />
{/if}