mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-03 13:18:56 +00:00
8 lines
214 B
Svelte
8 lines
214 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
|
|
let { ...restProps }: DropdownMenuPrimitive.PortalProps = $props();
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.Portal {...restProps} />
|