Files
flotilla/src/lib/components/SecondaryNavSection.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

13 lines
251 B
Svelte

<script lang="ts">
interface Props {
children?: import("svelte").Snippet
[key: string]: any
}
const {...props}: Props = $props()
</script>
<div class="flex flex-col gap-3 px-2 py-2 {props.class}">
{@render props.children?.()}
</div>