mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
21 lines
465 B
Svelte
21 lines
465 B
Svelte
<script lang="ts">
|
|
import { Button, Modal } from "carbon-components-svelte";
|
|
|
|
let open = false;
|
|
</script>
|
|
|
|
<Button kind="danger" on:click={() => (open = true)}>Delete all</Button>
|
|
|
|
<Modal
|
|
danger
|
|
bind:open
|
|
modalHeading="Delete all instances"
|
|
primaryButtonText="Delete"
|
|
secondaryButtonText="Cancel"
|
|
on:click:button--secondary={() => (open = false)}
|
|
on:open
|
|
on:close
|
|
on:submit
|
|
>
|
|
<p>This is a permanent action and cannot be undone.</p>
|
|
</Modal>
|