Files
flotilla/src/lib/components/SecondaryNav.svelte
T

22 lines
455 B
Svelte

<script lang="ts">
import cx from "classnames"
import type {Snippet} from "svelte"
interface Props {
class?: string
visible?: boolean
children?: Snippet
}
const {children, visible = false, ...props}: Props = $props()
</script>
<div
class={cx(
"mt-sai mb-sai max-h-screen w-60 min-h-0 shrink-0 flex-col gap-1 bg-base-300 z-nav",
visible ? "flex" : "hidden md:flex",
props.class,
)}>
{@render children?.()}
</div>