1 2 3 4 5 6 7
<script lang="ts"> import { Dialog as DialogPrimitive } from "bits-ui"; let { open = $bindable(false), ...restProps }: DialogPrimitive.RootProps = $props(); </script> <DialogPrimitive.Root bind:open {...restProps} />