8 lines
283 B
Svelte
8 lines
283 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { AlertDialog as AlertDialogPrimitive } from 'bits-ui';
|
||
|
|
||
|
let { ref = $bindable(null), ...restProps }: AlertDialogPrimitive.TriggerProps = $props();
|
||
|
</script>
|
||
|
|
||
|
<AlertDialogPrimitive.Trigger bind:ref data-slot="alert-dialog-trigger" {...restProps} />
|