mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
17 lines
356 B
Svelte
17 lines
356 B
Svelte
<script lang="ts">
|
|
import { Modal } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Modal
|
|
preventCloseOnClickOutside
|
|
open
|
|
modalHeading="Create database"
|
|
primaryButtonText="Confirm"
|
|
secondaryButtonText="Cancel"
|
|
on:click:button--secondary
|
|
on:open
|
|
on:close
|
|
on:submit
|
|
>
|
|
<p>Create a new Cloudant database in the US South region.</p>
|
|
</Modal>
|