mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-31 02:03:35 -07:00
13 lines
334 B
Svelte
13 lines
334 B
Svelte
<script lang="ts">
|
|
import DeleteButton from './DeleteButton.svelte';
|
|
</script>
|
|
|
|
<div class="flex flex-row justify-end gap-2">
|
|
<DeleteButton
|
|
text="Delete ALL Recordings"
|
|
prompt="Are you sure you want to delete ALL recordings?"
|
|
url="/api/delete-all-recordings"
|
|
name="all recodings"
|
|
/>
|
|
</div>
|