mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 00:35:50 +02:00
31 lines
771 B
Svelte
31 lines
771 B
Svelte
<script lang="ts">
|
|
import { Drawer as DrawerPrimitive } from 'vaul-svelte';
|
|
import DrawerOverlay from './drawer-overlay.svelte';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
portalProps,
|
|
children,
|
|
...restProps
|
|
}: DrawerPrimitive.ContentProps & {
|
|
portalProps?: DrawerPrimitive.PortalProps;
|
|
} = $props();
|
|
</script>
|
|
|
|
<DrawerPrimitive.Portal {...portalProps}>
|
|
<DrawerOverlay />
|
|
<DrawerPrimitive.Content
|
|
bind:ref
|
|
class={cn(
|
|
'bg-background fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border',
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
<div class="bg-muted mx-auto mt-4 h-2 w-[100px] rounded-full"></div>
|
|
{@render children?.()}
|
|
</DrawerPrimitive.Content>
|
|
</DrawerPrimitive.Portal>
|