Alert Modal
Place this anywhere in your app
svelte
Loading...Trigger the Modal. Note that onCancel() is optional
svelte
Loading...| Name | Type | Default | Description |
|---|---|---|---|
| open | boolean | false | Decides if the modal is open |
| title | string | '' | |
| content | string | '' | |
| confirmText | string | '' | |
| cancelText | string | '' | |
| onConfirm | function | void | Callback function when the confirm button is clicked. |
| onCancel | function | void | Callback function when the cancel button is clicked(optional). |