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