7 lines
241 B
Svelte
7 lines
241 B
Svelte
<script lang="ts">
|
|
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
|
|
let { open = $bindable(false), ...restProps }: AlertDialogPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Root bind:open {...restProps} />
|