Supra_App/src/lib/components/ui/alert-dialog/alert-dialog.svelte

8 lines
241 B
Svelte
Raw Normal View History

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