mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
21 lines
428 B
Svelte
21 lines
428 B
Svelte
<script>
|
|
import { Button, Modal } from "carbon-components-svelte";
|
|
|
|
let open = false;
|
|
</script>
|
|
|
|
<Button on:click={() => (open = true)}>Create database</Button>
|
|
|
|
<Modal
|
|
size="lg"
|
|
bind: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>
|