Files
flotilla/src/lib/components/SecondaryNavHeader.svelte
T
Prat_09 613cad31c0 add start chat FAB (#152)
Co-authored-by: Pratyush Mohanty <prat_09@noreply.coracle.social>
Co-committed-by: Pratyush Mohanty <prat_09@noreply.coracle.social>
2026-04-07 17:02:40 +00:00

12 lines
250 B
Svelte

<script lang="ts">
interface Props {
children?: import("svelte").Snippet
}
const {children}: Props = $props()
</script>
<div class="flex items-center justify-between px-1 py-2 text-sm font-bold uppercase">
{@render children?.()}
</div>