> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ContinueButton

> The ContinueButton control displays a button that allows users to continue workflow execution.

```
ContinueButton(label="Continue", disabled=True)
```

# Example

```python theme={null}
from mirmod.controls import ContinueButton

@wob.receiver("state", "continue", control=ContinueButton(label="Continue Processing", disabled=False), hidden=False, connectable=False)
def continue_button(self, data):
	pass
```

<Note>This control presents a button to the user which lets them continue execution from the current state. This is useful for creating interactive workflows that pause for user input.</Note>

# Parameters

| Name     | Type   | Description                                           |
| -------- | ------ | ----------------------------------------------------- |
| label    | string | The text displayed on the button. Default "Continue". |
| disabled | bool   | Whether the button is disabled. Default True.         |
