Files
flotilla/src/app/components/RoomName.svelte
T
2026-06-08 17:07:39 -07:00

18 lines
299 B
Svelte

<script lang="ts">
import {deriveRoom} from "@app/groups"
type Props = {
url: string
h: string
class?: string
}
const {url, h, ...props}: Props = $props()
const room = deriveRoom(url, h)
</script>
<span class="ellipsize min-w-0 {props.class}">
{$room?.name || h}
</span>